dotfiles/dots/sxhkd/sxhkdrc
2022-06-06 18:45:23 +02:00

163 lines
3.4 KiB
Text

#
# wm independent hotkeys
#
# terminal emulator
# WINIT_X11_SCALE_FACTOR=1.6666666666666667
super + Return
alacritty
# emacs
super + j
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} + v
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 + shift + 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,alt + 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 + brace{left,right}
bspc desktop -f {prev,next}.local
# focus the last node/desktop
super + {Tab,Escape}
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} {1-9,10} --follow
# move desktop to next monitor
super + alt + m
bspc desktop focused -m next --follow
super + shift + m
bspc node -n last.!automatic
#
# preselect
#
# preselect the direction
super + shift + s : {e,p,u,o}
bspc node -p {west,south,north,east}
# preselect the ratio
super + shift + s : {1-9}
bspc node -o 0.{1-9}
# cancel the preselection for the focused node
super + shift + s : space
bspc node -p cancel
#
# move/resize
#
# Expand/contract a window by moving one of its side outward/inward
super + s : {e,p,u,o}
STEP=20; SELECTION={1,2,3,4}; \
bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \
bspc node -z $(echo "right -$STEP 0,top 0 $STEP,bottom 0 -$STEP,left $STEP 0" | cut -d',' -f$SELECTION)
# move a floating window
super + {Left,Down,Up,Right}
bspc node -v {-20 0,0 20,0 -20,20 0}
# rotate tree
super + shift + {d,a}
bspc node @/ -C {forward,backward}