1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-19 02:17:44 +01:00

22 lines
363 B
Plaintext
Raw Normal View History

2019-09-07 17:42:18 +02:00
#!/bin/sh
vol="$(pulsemixer --get-volume | awk '{print $1}')"
2019-09-07 17:42:18 +02:00
if [ "$vol" -eq "0" ]; then
2023-10-15 05:55:51 +02:00
icon=""
elif [ "$vol" -gt "70" ]; then
icon=""
else
2020-05-29 18:31:15 +02:00
icon=""
fi
2023-10-15 05:55:51 +02:00
[ "$(pulsemixer --get-mute)" = "1" ] && icon="" && vol="-"
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
mic=""
else
2023-10-15 05:55:51 +02:00
mic=""
fi
printf "%s %s %s\\n" "$mic" "$icon" "$vol%"