diff options
| -rwxr-xr-x | scripts/selectopt | 5 | ||||
| -rw-r--r-- | sxhkd/sxhkdrc | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/scripts/selectopt b/scripts/selectopt new file mode 100755 index 0000000..eff605f --- /dev/null +++ b/scripts/selectopt @@ -0,0 +1,5 @@ +# !/bin/sh +# a script to select whether music or musiccmd should be called, +# depending on whether mpv is already running or not + +pidof mpv >/dev/null && musiccmd || music
\ No newline at end of file diff --git a/sxhkd/sxhkdrc b/sxhkd/sxhkdrc index b20942c..199ad3c 100644 --- a/sxhkd/sxhkdrc +++ b/sxhkd/sxhkdrc @@ -17,10 +17,12 @@ XF86AudioMute pamixer -t; kill {F7,super + n,super + shift + n} $TERMINAL -e {dmenurecord,lfub "$XDG_DATA_HOME/notes",newsboat} -{super + m, XF86Tools} +super + m music super + shift + m musiccmd +XF86Tools + selectopt XF86Audio{Prev,Next,Play,Stop} musiccmd {prev,next,cycle,stop} super + {s,a,y,w,e} |
