82 lines
1.6 KiB
Plaintext
82 lines
1.6 KiB
Plaintext
super + Escape
|
|
pkill -USR1 -x sxhkd
|
|
|
|
super + Return
|
|
wezterm
|
|
|
|
super + shift + Return
|
|
kitty
|
|
|
|
super + shift + r
|
|
bspc wm -r
|
|
|
|
super + d
|
|
rofi -show
|
|
|
|
super + space
|
|
rofi -show
|
|
|
|
super + {_,shift + } + q
|
|
bspc node -{c,k}
|
|
|
|
super + {_,shift + }{h,j,k,l}
|
|
bspc node -{f,s} {west,south,north,east}
|
|
|
|
super + {1,2,3,4,5,6,7,8,9,0}
|
|
bspc desktop -f ^{1,2,3,4,5,6,7,8,9,10}
|
|
|
|
super + shift + {1,2,3,4,5,6,7,8,9,0}
|
|
bspc node focused -d '^{1,2,3,4,5,6,7,8,9,10}'
|
|
|
|
super + {f,t,shift + t,shift + f}
|
|
bspc node focused -f -t {fullscreen,tiled,pseudo_tiled,floating}
|
|
|
|
# expand a window by moving one of its side outward
|
|
super + r ; {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 + shift + r ; {h,j,k,l}
|
|
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
|
|
|
|
Print
|
|
gnome-screenshot
|
|
shift + Print
|
|
gnome-screenshot -i
|
|
|
|
super + a
|
|
kill -s USR1 $(pidof deadd-notification-center)
|
|
super + shift + a
|
|
kill -s USR1 $(pidof deadd-notification-center)
|
|
|
|
|
|
# MPC media keys
|
|
|
|
XF86Audio{Play,Pause}
|
|
#mpc -q toggle
|
|
xf86keys toggle
|
|
|
|
XF86Audio{Prev,Stop,Next}
|
|
#mpc -q {prev,stop,next}
|
|
xf86keys {prev,stop,next}
|
|
|
|
# Pulseaudio
|
|
|
|
XF86AudioRaiseVolume
|
|
pactl set-sink-volume @DEFAULT_SINK@ +5%
|
|
XF86AudioLowerVolume
|
|
pactl set-sink-volume @DEFAULT_SINK@ -5%
|
|
XF86AudioMute
|
|
pactl set-sink-mute @DEFAULT_SINK@ toggle
|
|
XF86AudioMicMute
|
|
pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
|
|
|
# Brightness
|
|
|
|
XF86MonBrightnessUp
|
|
xbacklight -inc 10
|
|
XF86MonBrightnessDown
|
|
xbacklight -dec 10
|
|
|
|
|