Give EWW scripts proper extensions

This commit is contained in:
Michael Bradley 2025-06-22 14:25:02 -04:00
parent 448bdfc231
commit 287df92d65
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
13 changed files with 11 additions and 11 deletions

12
eww/scripts/adjust-volume.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/env sh
DELTA="1%"
case "$1" in
"up") pactl set-sink-volume @DEFAULT_SINK@ +"$DELTA"
;;
"down") pactl set-sink-volume @DEFAULT_SINK@ -"$DELTA"
;;
*) exit 1
;;
esac