about summary refs log tree commit diff stats
path: root/home-manager/config/yambar/scripts/sound-volume.sh
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-12 16:05:37 +0100
committerene <ene@sils.li>2023-03-12 16:05:37 +0100
commitee361f87765bee2d8f0910e27e01217a2f800add (patch)
treee54a3a30e431a00d75f46dd087dc17ad98b57f6c /home-manager/config/yambar/scripts/sound-volume.sh
parentFix(hm/conf/lf): Typo (diff)
downloadnixos-config-ee361f87765bee2d8f0910e27e01217a2f800add.tar.gz
nixos-config-ee361f87765bee2d8f0910e27e01217a2f800add.zip
Fix(hm/conf/yambar): Update to new shell lib version
Diffstat (limited to 'home-manager/config/yambar/scripts/sound-volume.sh')
-rw-r--r--home-manager/config/yambar/scripts/sound-volume.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/home-manager/config/yambar/scripts/sound-volume.sh b/home-manager/config/yambar/scripts/sound-volume.sh
deleted file mode 100644
index 8fc0107f..00000000
--- a/home-manager/config/yambar/scripts/sound-volume.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env dash
-# shellcheck disable=SC2086
-# shellcheck source=/dev/null
-# . ~/.local/lib/shell/lib
-. %SHELL_LIBRARY_PATH
-
-while true; do
-    volume=$(pactl get-sink-volume 0 | awk 'BEGIN { FS="/" } {gsub("%","",$2); gsub(" ","",$2)} {printf $2}')
-
-    if [ "$volume" -eq 0 ]; then
-        echo "muted|bool|true"
-    else
-        echo "volume|string|$volume"
-        echo "muted|bool|false"
-    fi
-    echo ""
-
-    sleep 1;
-done
-
-
-# vim: ft=sh