switching to yadm

This commit is contained in:
2025-03-08 08:03:49 +01:00
commit 2b7f7ed8be
56 changed files with 5000 additions and 0 deletions

12
.config/eww/scripts/getvol Executable file
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