2 # wm independent hotkeys
6 super + {_,shift} + Return
14 xfce4-popup-whiskermenu
36 # make sxhkd reload its configuration files:
41 XF86Audio{Raise,Lower}Volume
42 pamixer --allow-boost --{in,de}crease 5
49 XF86Audio{Play,Prev,Next}
50 mpc {toggle,prev,next}
54 light-locker-command -l
56 # Toggle keyboard layout
60 # Toggle Xfce presentation mode
62 toggle-presentation-mode
65 XF86MonBrightness{Up,Down}
66 light -s mba6x_backlight -{A,U} 5
69 #XF86KbdBrightness{Up,Down}
84 # alternate between the tiled and monocle layout
88 # if the current node is automatic, send it to the last manual, otherwise pull the last leaf
90 bspc query -N -n focused.automatic && bspc node -n last.!automatic || bspc node last.leaf -n focused
92 # swap the current node and the biggest node
100 # set the window state
101 super + {t,shift + t,s,f}
102 bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
105 super + ctrl + {x,y,z}
106 bspc node -g {locked,sticky,private}
112 # focus the node in the given direction
113 super + {_,shift + }{h,j,k,l}
114 bspc node -{f,s} {west,south,north,east}
116 # focus the node for the given path jump
117 super + {p,b,comma,period}
118 bspc node -f @{parent,brother,first,second}
120 # focus the next/previous node in the current desktop
121 super + {_,shift + }c
122 bspc node -f {next,prev}.local
124 # focus the next/previous desktop in the current monitor
125 super + bracket{left,right}
126 bspc desktop -f {prev,next}.local
128 # send to next/prev desktop
129 super + shift + bracket{left,right}
130 bspc node -d {prev,next}
132 # focus the last node/desktop
134 bspc {node,desktop} -f last
136 # focus the older or newer node in the focus history
139 bspc node {older,newer} -f; \
142 # focus or send to the given desktop
143 super + {_,shift + }{1-9,0}
144 bspc {desktop -f,node -d} '^{1-9,10}'
150 # preselect the direction
151 super + ctrl + {h,j,k,l}
152 bspc node -p {west,south,north,east}
154 # preselect the ratio
158 # cancel the preselection for the focused node
162 # cancel the preselection for the focused desktop
163 super + ctrl + shift + space
164 bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
170 # expand a window by moving one of its side outward
171 super + alt + {h,j,k,l}
172 bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
174 # contract a window by moving one of its side inward
175 super + alt + shift + {h,j,k,l}
176 bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
178 # move a floating window
179 super + {Left,Down,Up,Right}
180 bspc node -v {-20 0,0 20,0 -20,20 0}