diff options
author | neodarz <neodarz@neodarz.net> | 2019-03-22 21:13:11 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-03-22 21:13:11 +0100 |
commit | d94c1d0d81cfa007a6ef3ad81f4c4f08e74dd781 (patch) | |
tree | bb32b0948484ddbdae3f5d8ce98b37c1b677100c /i3 | |
parent | bbcccde2cec0350cdfcf9fd114aa4ed95382f901 (diff) | |
download | dotfiles_ascii-d94c1d0d81cfa007a6ef3ad81f4c4f08e74dd781.tar.xz dotfiles_ascii-d94c1d0d81cfa007a6ef3ad81f4c4f08e74dd781.zip |
Fix bindkey up/down for cycling workspace issue
Diffstat (limited to '')
-rw-r--r-- | i3/.config/i3/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config index dec022b..c9ce53c 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -122,8 +122,8 @@ bindsym XF86AudioPlay exec ~/.config/i3/switch_audio.sh 8 bindsym $WinKey+g exec ~/.scripts/cycle-workspace.py bindsym Control+$AltKey+Right exec ~/.scripts/cycle-workspace-multiscreen.py right bindsym Control+$AltKey+Left exec ~/.scripts/cycle-workspace-multiscreen.py left -bindsym Control+$AltKey+Top exec ~/.scripts/cycle-workspace-multiscreen.py top -bindsym Control+$AltKey+Bottom exec ~/.scripts/cycle-workspace-multiscreen.py bottom +bindsym Control+$AltKey+Up exec ~/.scripts/cycle-workspace-multiscreen.py top +bindsym Control+$AltKey+Down exec ~/.scripts/cycle-workspace-multiscreen.py bottom # start a terminal #bindsym $WinKey+Return exec urxvt --termName 'rxvt-unicode' -fn 'xft:Fira Code:size=8' --background 'black' --color0 'black' --color8 'black' --color1 'red' --color9 'red' --color2 'green' --color10 'green' --color3 'yellow' --color11 'yellow' --color4 'blue' --color12 'blue' --color6 'cyan' --color14 'cyan' --color7 'white' --color15 'white' -cursorColor '#ffffff' |