fix theming

This commit is contained in:
Vivian 2024-03-23 20:43:29 +01:00
parent edfe487b8a
commit 39c8317c93
11 changed files with 467 additions and 126 deletions

View file

@ -0,0 +1,12 @@
#!/bin/sh
if command -v pamixer &>/dev/null; then
if [ true == $(pamixer --get-mute) ]; then
echo 0
exit
else
pamixer --get-volume
fi
else
amixer -D pulse sget Master | awk -F '[^0-9]+' '/Left:/{print $3}'
fi