You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
760 B
52 lines
760 B
#
|
|
# wm independent hotkeys
|
|
#
|
|
|
|
# backlight keys
|
|
XF86MonBrightness{Up,Down}
|
|
xbacklight -fps 25 -{inc,dec} 5
|
|
|
|
ctrl + {Right,Left}
|
|
xbacklight -fps 25 -{inc,dec} 5
|
|
|
|
# audio control
|
|
XF86Audio{Raise,Lower}Volume
|
|
amixer -q sset Master 3%{+,-}
|
|
|
|
ctrl + {Up,Down}
|
|
amixer -q sset Master 3%{+,-}
|
|
|
|
XF86AudioMute
|
|
amixer -q sset Master toggle
|
|
|
|
XF86AudioMicMute
|
|
amixer -q sset Capture toggle
|
|
|
|
# terminal emulator
|
|
super + Return
|
|
alacritty
|
|
|
|
alt + Return
|
|
alacritty
|
|
|
|
# program launcher
|
|
super + @space
|
|
rofi -show drun
|
|
|
|
super + shift + space
|
|
rofi -show run
|
|
|
|
# program launcher
|
|
alt + @space
|
|
rofi -show drun
|
|
|
|
alt + shift + space
|
|
rofi -show run
|
|
|
|
# Screenshot
|
|
Print
|
|
$SCRIPT_DIR/screenshot
|
|
|
|
# make sxhkd reload its configuration files:
|
|
super + Escape
|
|
pkill -USR1 -x sxhkd
|
|
|