sxhkd/sxhkdrc.bspwm

132 lines
2.7 KiB
Plaintext
Raw Normal View History

2020-03-31 21:28:57 +00:00
# #
# bspwm hotkeys
#
# quit/restart bspwm
super + shift + {q,r}
bspc {quit,wm -r}
# close and kill
2022-05-03 19:36:42 +00:00
super + BackSpace
2022-01-09 11:38:32 +00:00
bspc node -c
2022-02-05 12:19:40 +00:00
2022-05-03 19:36:42 +00:00
# ctrl + KP_Subtract
# bspc node -k
2020-06-30 15:06:07 +00:00
2020-03-31 21:28:57 +00:00
# alternate between the tiled and monocle layout
super + m
bspc desktop -l next
# swap the current node and the biggest node
2020-06-30 15:06:07 +00:00
# super + g
# bspc node -s biggest
2020-03-31 21:28:57 +00:00
2020-12-30 12:18:57 +00:00
2020-03-31 21:28:57 +00:00
#
# state/flags
#
# set the window state
2020-04-07 16:59:31 +00:00
super + {t,shift + t,shift + f,f}
2020-03-31 21:28:57 +00:00
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
2022-02-05 12:26:38 +00:00
super + s
bspc node -g sticky
2020-03-31 21:28:57 +00:00
2020-11-21 00:16:08 +00:00
# # set the node flags
# super + ctrl + {m,x,y,z}
# bspc node -g {marked,locked,sticky,private}
#
# # send the newest marked node to the newest preselected node
# super + y
# bspc node newest.marked.local -n newest.!automatic.local
2020-03-31 21:28:57 +00:00
#
# focus/swap
#
2023-12-08 11:12:52 +00:00
# Focus the next/previous node in the current desktop:
super + bracket{left,right}
bspc node -f {next,prev}.local
2020-03-31 21:28:57 +00:00
# focus the node in the given direction
super + {_,shift + }{h,j,k,l}
bspc node -{f,s} {west,south,north,east}
2020-11-07 13:51:04 +00:00
focus the parent node
super + Prior
bspc node -f @parent
2020-03-31 21:28:57 +00:00
# focus the node for the given path jump
2020-06-30 15:06:07 +00:00
# super + {p,b,comma,period}
# bspc node -f @{parent,brother,first,second}
2020-03-31 21:28:57 +00:00
# focus the next/previous node in the current desktop
2020-06-30 15:06:07 +00:00
# super + {_,shift + }c
# bspc node -f {next,prev}.local
2020-03-31 21:28:57 +00:00
2020-07-13 11:27:36 +00:00
focus the next/previous desktop in the current monitor
2023-12-08 11:12:52 +00:00
super + ctrl + bracket{left,right}
2020-07-13 11:27:36 +00:00
bspc desktop -f {prev,next}.local
2020-03-31 21:28:57 +00:00
# focus the last node/desktop
2022-05-03 19:36:42 +00:00
# super + grave
2022-08-19 13:49:29 +00:00
# bspc node -f last
2022-08-13 12:56:14 +00:00
super + c
2020-06-30 15:06:07 +00:00
bspc node -f last
2020-03-31 21:28:57 +00:00
# focus the older or newer node in the focus history
2020-06-30 15:06:07 +00:00
# super + {o,i}
# bspc wm -h off; \
# bspc node {older,newer} -f; \
# bspc wm -h on
2020-03-31 21:28:57 +00:00
2020-04-01 17:56:43 +00:00
# window-select script
2020-04-01 14:31:02 +00:00
super + space
2022-02-18 15:22:42 +00:00
window-select
super + shift + space
2020-04-01 14:31:02 +00:00
window-select all
super + ctrl + space
window-select monitor
2020-03-31 21:28:57 +00:00
#
# preselect
#
# preselect the direction
super + ctrl + {h,j,k,l}
bspc node -p {west,south,north,east}
# preselect the ratio
super + ctrl + {1-9}
bspc node -o 0.{1-9}
# cancel the preselection for the focused node
2020-06-30 15:06:07 +00:00
# super + ctrl + space
# bspc node -p cancel
2020-03-31 21:28:57 +00:00
# cancel the preselection for the focused desktop
2020-06-30 15:06:07 +00:00
# super + ctrl + shift + space
# bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
2020-03-31 21:28:57 +00:00
2022-04-12 09:56:24 +00:00
# mark and send to preselected
super + ctrl + m
bspc node -g marked && bspc node newest.marked.local -n newest.!automatic.local
2020-03-31 21:28:57 +00:00
#
# move/resize
#
# expand a window by moving one of its side outward
super + alt + {h,j,k,l}
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
# contract a window by moving one of its side inward
super + alt + shift + {h,j,k,l}
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
# move a floating window
super + {Left,Down,Up,Right}
bspc node -v {-20 0,0 20,0 -20,20 0}