15 lines
328 B
Bash
Executable file
15 lines
328 B
Bash
Executable file
#!/bin/sh
|
|
|
|
touch /tmp/vol
|
|
awesome-client "naughty.destroy_all_notifications()"
|
|
pamixer --allow-boost -d 5
|
|
pw-play /run/current-system/sw/share/sounds/freedesktop/stereo/audio-volume-change.oga
|
|
volume=$(pulsemixer --get-volume | awk '{print $1}' | cut -c 1-2)
|
|
echo $volume >> /tmp/vol
|
|
|
|
eww open volume
|
|
|
|
sleep 3
|
|
|
|
eww close volume
|