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

22 lines
485 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
vol_info="^c#ff0000^ ^d^ $vol%"
elif [ "$vol" -gt "70" ]; then
vol_info="^c#dfdfdf^ ^d^ $vol%"
else
vol_info="^c#dfdfdf^ ^d^ $vol%"
fi
[ "$(pulsemixer --get-mute)" = "1" ] && vol_info="^c#ff0000^ ^d^ -%"
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
2023-10-16 23:49:04 +02:00
mic="^b#282828^^c#dfdfdf^  "
else
mic="^b#282828^^c#ff0000^  "
fi
2023-10-16 23:49:04 +02:00
printf "%s %s %s\\n" "$mic" "$vol_info"