very cool stuff

This commit is contained in:
2025-03-18 13:54:05 +01:00
parent 920e25462c
commit 95167d8338
20 changed files with 856 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
MUTED=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -iq muted; echo $?)
if [[ $MUTED -eq 0 ]]; then
notify-send "Audio muted" -a 'wp-vol' -t 1000
else
notify-send "Audio unmuted" -a 'wp-vol' -t 1000
fi