6 lines
330 B
Plaintext
6 lines
330 B
Plaintext
|
#!/bin/bash
|
||
|
pkill -RTMIN+10 dwmblocks
|
||
|
[ "$1" = "up" ] && ponymix increase 5 > /dev/null && notify-send "🔊 Volume $(ponymix get-volume)"
|
||
|
[ "$1" = "down" ] && ponymix decrease 5 > /dev/null && notify-send "🔉 Volume $(ponymix get-volume)"
|
||
|
[ "$1" = "toggle" ] && ponymix toggle> /dev/null && notify-send "🔇 Volume (un)mute "
|