Update zsh and sway

This commit is contained in:
2025-08-09 10:57:34 -04:00
parent e2ae66cd24
commit 5f0577a9c5
2 changed files with 14 additions and 12 deletions

View File

@@ -61,10 +61,10 @@ client.background $base
# Gaps and borders # Gaps and borders
gaps inner 4 gaps inner 4
gaps outer 10 gaps outer 10
default_border normal 4 default_border normal 2
default_floating_border normal 4 default_floating_border normal 2
#font pango:"JetBrainsMono Nerd Font" Normal 14 font pango:"JetBrainsMono Nerd Font" Normal 10
# Status bar # Status bar
bar { bar {
@@ -250,16 +250,16 @@ bindsym $mod+Shift+f4 move container to workspace number 8
bindsym $mod+escape kill bindsym $mod+escape kill
# Move focus # Move focus
bindsym $mod+a focus left bindsym $mod+h focus left
bindsym $mod+s focus down bindsym $mod+j focus down
bindsym $mod+w focus up bindsym $mod+k focus up
bindsym $mod+d focus right bindsym $mod+l focus right
# Move window # Move window
bindsym $mod+Shift+a move left bindsym $mod+Shift+h move left
bindsym $mod+Shift+s move down bindsym $mod+Shift+j move down
bindsym $mod+Shift+w move up bindsym $mod+Shift+k move up
bindsym $mod+Shift+d move right bindsym $mod+Shift+l move right
bindsym $mod+Shift+f floating toggle bindsym $mod+Shift+f floating toggle

4
.zshrc
View File

@@ -19,4 +19,6 @@ eval "$(starship init zsh)"
export PATH=~/.npm-global/bin:~/.local/bin:$PATH export PATH=~/.npm-global/bin:~/.local/bin:$PATH
export SSH_AUTH_SOCK=/home/pmcc/.bitwarden-ssh-agent.sock export SSH_AUTH_SOCK=/home/pmcc/.bitwarden-ssh-agent.sock
alias claude="/home/pmcc/.claude/local/claude" for file in ~/.config/zsh/*.zsh; do
[ -r "$file" ] && source "$file"
done