diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/mute | 3 | ||||
| -rwxr-xr-x | bin/vol_down | 3 | ||||
| -rwxr-xr-x | bin/vol_up | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,4 @@ #!/bin/sh -pactl set-sink-mute @DEFAULT_SINK@ toggle +pactl set-sink-mute @DEFAULT_SINK@ toggle & +dunstify "Toggled mute" & diff --git a/bin/vol_down b/bin/vol_down index 5c67be2..9a01c42 100755 --- a/bin/vol_down +++ b/bin/vol_down @@ -1,3 +1,4 @@ #!/bin/sh -pactl set-sink-volume @DEFAULT_SINK@ -5% +pactl set-sink-volume @DEFAULT_SINK@ -5% & +dunstify "Turned the volume down 5%" @@ -1,3 +1,5 @@ #!/bin/sh -pactl set-sink-volume @DEFAULT_SINK@ +5% +pactl set-sink-volume @DEFAULT_SINK@ +5% & +dunstify "Turned the volume up +5" & + |