Fix sxhkd bindings

This commit is contained in:
samedamci 2020-05-09 17:43:27 +02:00
parent 115ad2da73
commit 8346de2402
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894

View File

@ -17,6 +17,12 @@
# browser
super + b
iceweasel
# rofi
super + d
rofi -show drun
# st
super + Return
st
# neomutt
XF86Mail
st -e neomutt
@ -46,17 +52,17 @@ super + u
updater
# rofi-todo
super + n
$SCRD/rofi-todo/rofi-todo.py -f $HOME/Notes/notes.json
rofi-todo -f $HOME/Notes/notes.json
# blaze
F11
if [ $(pgrep ffmpeg) ]; then "$SCRD/blaze/blaze" -s; else "$SCRD/blaze/blaze"; fi
[ $(pgrep ffmpeg) ] && blaze -s || blaze
#~~~~~~~~~~~
# SmartHome
#~~~~~~~~~~~
F10
curl 192.168.1.201/toggle.php
curl 192.168.1.201/toggle.php && refbar
#~~~~~~~
@ -64,16 +70,16 @@ F10
#~~~~~~~
# Mute
XF86AudioMute
amixer sset Master toggle
amixer sset Master toggle && refbar
# Volume control
XF86Audio{Raise,Lower}Volume
amixer sset Master 5%{+,-} && refbar
# Songs control
XF86Audio{Next,Prev}
mpc {next,prev}
mpc {next,prev} && refbar
# Pause/play
XF86AudioPlay
mpc toggle
mpc toggle && refbar
# Stop
XF86AudioStop
mpc stop
mpc stop && refbar