Browse Source

[volcont] Add support for dunst notifications

master
lhark 5 years ago
parent
commit
0fee4131e5
  1. 3
      restart-on-change
  2. 15
      volcont

3
restart-on-change

@ -2,6 +2,7 @@
while true; do
$@ &
PID=$!
inotifywait $1
sleep 1
inotifywait $1 # FIXME: that's not the file
kill $PID
done

15
volcont

@ -4,8 +4,9 @@
# Taken from http://customlinux.blogspot.fr/2013/02/pavolumesh-control-active-sink-volume.html
# and slightly adapted by lhark to work with notify-send
notify='yes'
notify='dunst' # no/yes/dunst
notiftime='400'
notifid='42'
inc='2'
capvol='yes'
maxvol='200'
@ -41,13 +42,13 @@ volUp () {
getCurVol
if [ ${notify} = 'yes' ]
then
if [ ${notify} = 'yes' ]; then
notify-send "Volume : ${curVol}%" -t ${notiftime}
elif [ "$notify" = 'dunst' ]; then
dunstify -r "$notifid" -t "$notiftime" "Volume: $curVol%"
fi
if [ ${autosync} = 'yes' ]
then
if [ ${autosync} = 'yes' ]; then
volSync
fi
}
@ -61,6 +62,8 @@ volDown () {
if [ ${notify} = 'yes' ]; then
notify-send "Volume : ${curVol}%" -t ${notiftime}
elif [ "$notify" = 'dunst' ]; then
dunstify -r "$notifid" -t "$notiftime" "Volume: $curVol%"
fi
if [ ${autosync} = 'yes' ]; then
@ -104,6 +107,8 @@ volMute () {
if [ ${notify} = 'yes' ]; then
notify-send "$([ "${status}" = 1 ] && echo "Sound muted" || echo "Sound unmuted")" -t ${notiftime}
elif [ "$notify" = 'dunst' ]; then
dunstify -r "$notifid" -t "$notiftime" "$([ "${status}" = 1 ] && echo "Sound muted" || echo "Sound unmuted")"
fi
}

Loading…
Cancel
Save