dotfiles/dots/sxhkd/sxhkdrc

177 lines
3.8 KiB
Text
Raw Normal View History

2020-12-31 17:10:13 +01:00
#
# wm independent hotkeys
#
# terminal emulator
super + Return
alacritty
# emacs
super + alt + p
bash /home/hiro/.scripts/ec -c
# launcher
super + space
rofi -matching fuzzy -show run
# find windows
super + w
rofi -matching fuzzy -show-icons -show
# make sxhkd reload its configuration files:
super + q
pkill -USR1 -x sxhkd
# screenshot
super + {control,shift} + s
xfce4-screenshooter -c {-f,-r}
super + y
sh -c "gopass ls --flat | rofi -matching fuzzy -dmenu | xargs --no-run-if-empty gopass show -c"
#
# Laptop
#
XF86MonBrightnessUp
brightnessctl s +10
XF86MonBrightnessDown
brightnessctl s 10-
#
# bar
#
# show/hide
control + space
polybar-msg cmd toggle
#
# bspwm hotkeys
#
# quit/restart bspwm
super + shift + {q,r}
{xfce4-session-logout --fast,bspc wm -r}
# close and kill
super + x
bspc node -c
super + shift + x
bspc node -k
# alternate between the tiled and monocle layout
super + m
bspc desktop -l next
# send the newest marked node to the newest preselected node
super + y
bspc node newest.marked.local -n newest.!automatic.local
# swap the current node and the biggest window
super + shift + Return
bspc node -s biggest.local.window || bspc node -s last.local
#
# state/flags
#
# set the window state
super + {t,shift + t,s,f}
bspc node -t {tiled,pseudo_tiled,floating,fullscreen} || bspc node -t tiled
# set the node flags
super + ctrl + {m,x,y,z}
bspc node -g {marked,locked,sticky,private}
#
# focus/swap
#
# focus the node in the given direction
super + {_,shift + }{e,p,u,o}
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}
# focus the next/previous window in the current desktop
super + {i,n}
bspc node -f {next,prev}.local.!hidden.window
# focus the next/previous desktop in the current monitor
super + bracket{left,right}
bspc desktop -f {prev,next}.local
# focus the last node/desktop
super + {grave,Tab}
bspc {node,desktop} -f last
# focus the older or newer node in the focus history
super + {_,shift +}c
bspc wm -h off; \
bspc node {older,newer} -f; \
bspc wm -h on
# focus or send to the given desktop
super + {_,shift +}{1-9,0}
bspc {desktop -f,node -d} {I,II,III,IV,V,VI,VII,VIII,IX,X}
2021-05-11 11:26:53 +02:00
# move desktop to next monitor
super + shift + m
bspc desktop focused -m next --follow
2020-12-31 17:10:13 +01:00
#
# preselect
#
# preselect the direction
super + ctrl + {e,p,u,o}
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
super + ctrl + space
bspc node -p cancel
# cancel the preselection for the focused desktop
super + ctrl + shift + space
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
#
# move/resize
#
2021-05-16 09:42:32 +02:00
# expand a window by moving one of its side outward
super + alt + {e,p,u,o}
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
2020-12-31 17:10:13 +01:00
2021-05-16 09:42:32 +02:00
# contract a window by moving one of its side inward
super + alt + shift + {e,p,u,o}
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
2020-12-31 17:10:13 +01:00
# move a floating window
super + {Left,Down,Up,Right}
bspc node -v {-20 0,0 20,0 -20,20 0}
# Smart resize, will grow or shrink depending on location.
# Will always grow for floating nodes.
super + alt + {e,p,u,o}
n=10; \
{ d1=left; d2=right; dx=-$n; dy=0; \
, d1=bottom; d2=top; dx=0; dy=$n; \
, d1=top; d2=bottom; dx=0; dy=-$n; \
, d1=right; d2=left; dx=$n; dy=0; \
} \
bspc node --resize $d1 $dx $dy || bspc node --resize $d2 $dx $dy
# rotate tree
super + shift + {d,a}
bspc node @/ -C {forward,backward}