aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-02-23 18:11:25 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-02-23 18:11:25 +0100
commit33788846e2662d0bf792401fd770fe5d738e60af (patch)
tree9d37b1572e04a1221a24c4d0c16057c0e8a97e34 /bin
parent8728e9e370100b56afed1e618e4c61c403e1228d (diff)
downloaddotfiles-33788846e2662d0bf792401fd770fe5d738e60af.tar.gz
dotfiles-33788846e2662d0bf792401fd770fe5d738e60af.tar.bz2
dotfiles-33788846e2662d0bf792401fd770fe5d738e60af.zip
Updated volume notification done directly by pulseaudio-ctl, with dunst configured to stack them (like regular volume notification), Removed volume-ctl script
Diffstat (limited to 'bin')
-rwxr-xr-xbin/volume-ctl12
1 files changed, 0 insertions, 12 deletions
diff --git a/bin/volume-ctl b/bin/volume-ctl
deleted file mode 100755
index 7e3ec83..0000000
--- a/bin/volume-ctl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-[ "$#" -ne 1 ] && exit 1;
-
-case "$1" in
- "up") pulseaudio-ctl up ;;
- "down") pulseaudio-ctl down ;;
- "mute") pulseaudio-ctl mute ;;
- *) exit 1 ;;
-esac
-
-notify-send "volume $(pulseaudio-ctl full-status | cut -d ' ' -f 1)"