diff options
author | David Robillard <d@drobilla.net> | 2017-12-10 13:22:01 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-10 14:37:18 +0100 |
commit | 9eac68602a62f17ea6fdfcc90fb5cda8ef03d83e (patch) | |
tree | 22644b5d077392cf38de2502b90637d4d63aa4b4 /sxhkd | |
parent | 2548e2ccbaf5da03b1158097d86f3196799f09ef (diff) | |
download | dotfiles-9eac68602a62f17ea6fdfcc90fb5cda8ef03d83e.tar.gz dotfiles-9eac68602a62f17ea6fdfcc90fb5cda8ef03d83e.tar.bz2 dotfiles-9eac68602a62f17ea6fdfcc90fb5cda8ef03d83e.zip |
Fix window switching key bindings
Diffstat (limited to 'sxhkd')
-rw-r--r-- | sxhkd/sxhkdrc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sxhkd/sxhkdrc b/sxhkd/sxhkdrc index b524c34..22ee544 100644 --- a/sxhkd/sxhkdrc +++ b/sxhkd/sxhkdrc @@ -15,13 +15,13 @@ super + Escape pkill -USR1 -x sxhkd # show panel -super + p +super + ctrl + p bspc config top_padding $PANEL_HEIGHT; \ xdotool search --name "Top Expanded Edge Panel" windowmap; \ xdotool search --name "Top Expanded Edge Panel" windowraise; # hide panel -super + shift + p +super + ctrl + shift + p xdotool search --name "Top Expanded Edge Panel" windowunmap; \ bspc config top_padding 0 @@ -95,12 +95,12 @@ super + {_,shift + }{Left,Down,Up,Right} bspc node -{f,s} {west,south,north,east} # focus the node for the given path jump -super + {p,b,comma,period} - bspc node -f @{parent,brother,first,second} +# super + {p,b,comma,period} +# bspc node -f @{parent,brother,first,second} -# focus the next/previous node -super + {_,shift + }c - bspc node -f {next,prev} +# focus the next/previous node in the active desktop +super + {n,p} + bspc node -f {next.active,prev.active} # focus the next/previous desktop super + bracket{left,right} |