mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 10:11:43 -05:00

The new message syntax: - Provides 10 commands instead of 60. - Allows multiple actions to be applied in one call. The client now returns an non zero exit code when a message fails. The `is_adjacent` function now handles vacant nodes.
82 lines
1.3 KiB
Text
82 lines
1.3 KiB
Text
#
|
|
# bspwm hotkeys
|
|
#
|
|
|
|
super + alt + Escape
|
|
bspc quit
|
|
|
|
super + w
|
|
bspc window -c
|
|
|
|
super + t
|
|
bspc desktop -l next
|
|
|
|
super + b
|
|
bspc desktop -B
|
|
|
|
super + {s,f}
|
|
bspc window -t {floating,fullscreen}
|
|
|
|
super + {grave,Tab}
|
|
bspc {window,desktop} -f last
|
|
|
|
super + apostrophe
|
|
bspc window -s last
|
|
|
|
super + m
|
|
bspc window -s biggest
|
|
|
|
super + {_,shift + }{h,j,k,l}
|
|
bspc window -{f,s} {left,down,up,right}
|
|
|
|
super + {_,shift + }c
|
|
bspc window -f {next,prev}
|
|
|
|
super + {comma,period}
|
|
bspc desktop -C {backward,forward}
|
|
|
|
super + bracket{left,right}
|
|
bspc desktop -f {prev,next}
|
|
|
|
super + ctrl + {h,j,k,l}
|
|
bspc window -p {left,down,up,right}
|
|
|
|
super + ctrl + {_,shift + }space
|
|
bspc {window -p cancel,desktop -c}
|
|
|
|
super + alt + {h,j,k,l}
|
|
bspc window -e {left,down,up,right} push
|
|
|
|
super + alt + shift + {h,j,k,l}
|
|
bspc window -e {right,up,down,left} pull
|
|
|
|
super + ctrl + {1-9}
|
|
bspc window -r 0.{1-9}
|
|
|
|
super + {_,shift + }{1-9,0}
|
|
bspc {desktop -f,window -d} {1-9,0}
|
|
|
|
:button1
|
|
bspc pointer -g focus
|
|
|
|
super + button{1-3}
|
|
bspc pointer -g {move,resize_side,resize_corner}
|
|
|
|
super + !button{1-3}
|
|
bspc pointer -t %i %i
|
|
|
|
#
|
|
# wm independent hotkeys
|
|
#
|
|
|
|
super + Return
|
|
urxvt
|
|
|
|
super + space
|
|
dmenu_run
|
|
|
|
# make sxhkd reload its configuration files:
|
|
super + Escape
|
|
pkill -USR1 -x sxhkd
|
|
|
|
# vim: set ft=sxhkdrc:
|