summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/sway/config1
-rw-r--r--.config/sway/config.d/outputs10
-rw-r--r--.config/sway/hosts/study/outputs3
-rw-r--r--.config/sway/hosts/wit/outputs9
-rw-r--r--.zshrc54
5 files changed, 47 insertions, 30 deletions
diff --git a/.config/sway/config b/.config/sway/config
index 2b7231e..71f7ed8 100644
--- a/.config/sway/config
+++ b/.config/sway/config
@@ -165,6 +165,7 @@ bindsym $mod+r mode "resize"
include "$HOME/.cache/wal/colors-sway"
include "$HOME/.config/sway/config.d/*"
+include "$HOME/.config/sway/hosts/$(cat /etc/hostname)/*'
include /etc/sway/config.d/*
exec sleep 5 && systemctl --user start sway-session.service
diff --git a/.config/sway/config.d/outputs b/.config/sway/config.d/outputs
index fc4ca40..ad45998 100644
--- a/.config/sway/config.d/outputs
+++ b/.config/sway/config.d/outputs
@@ -2,13 +2,3 @@ output * {
background "$(cat $HOME/.cache/wal/wal)" fill
}
-output DP-2 {
- resolution 2560x1440@239.970Hz
- position 0,0
-}
-
-output HDMI-A-1 {
- resolution 1920x1080@60.000Hz
- position 2560,0
-}
-
diff --git a/.config/sway/hosts/study/outputs b/.config/sway/hosts/study/outputs
new file mode 100644
index 0000000..3d3e7f2
--- /dev/null
+++ b/.config/sway/hosts/study/outputs
@@ -0,0 +1,3 @@
+output eDP-2 {
+ scale 1.5
+}
diff --git a/.config/sway/hosts/wit/outputs b/.config/sway/hosts/wit/outputs
new file mode 100644
index 0000000..83bb6bf
--- /dev/null
+++ b/.config/sway/hosts/wit/outputs
@@ -0,0 +1,9 @@
+output DP-2 {
+ resolution 2560x1440@239.970Hz
+ position 0,0
+}
+
+output HDMI-A-1 {
+ resolution 1920x1080@60.000Hz
+ position 2560,0
+}
diff --git a/.zshrc b/.zshrc
index 66e9f74..6afc2e1 100644
--- a/.zshrc
+++ b/.zshrc
@@ -1,23 +1,37 @@
-source /usr/share/zsh/share/antigen.zsh
-
-# Load the oh-my-zsh's library.
-antigen use oh-my-zsh
-
-# Bundles from the default repo (robbyrussell's oh-my-zsh).
-antigen bundle git
-antigen bundle heroku
-antigen bundle pip
-antigen bundle lein
-antigen bundle command-not-found
-
-# Syntax highlighting bundle.
-antigen bundle zsh-users/zsh-syntax-highlighting
-
-# Load the theme.
-antigen theme funky
-
setopt completealiases
alias dotfiles='/usr/bin/git --git-dir="$HOME/.dotfiles/" --work-tree="$HOME"'
-# Tell Antigen that you're done.
-antigen apply
+ZSH_CUSTOM="$HOME/.config/zsh"
+ZSH_THEME="funky"
+zstyle ':omz:update' mode auto
+plugins=(
+ aliases
+ alias-finder
+ archlinux
+ cp
+ copyfile
+ copypath
+ emoji
+ git
+ git-commit
+ git-escape-magic
+ git-extras
+ gitignore
+ git-prompt
+ kate
+ man
+ node
+ npm
+ pip
+ podman
+ poetry
+ pre-commit
+ python
+ ssh
+ sudo
+ systemd
+ zsh-interactive-cd
+ zsh-navigation-tools
+)
+
+. /usr/share/oh-my-zsh/oh-my-zsh.sh