mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
361 B
22 lines
361 B
#!/bin/sh
|
|
|
|
vol=$(pulsemixer --get-volume | awk '{print $1}')
|
|
|
|
if [ "$vol" -eq "0" ]; then
|
|
icon=""
|
|
elif [ "$vol" -gt "70" ]; then
|
|
icon=""
|
|
else
|
|
icon=""
|
|
fi
|
|
|
|
[ "$(pulsemixer --get-mute)" = "1" ] && icon="" && vol="M"
|
|
|
|
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
|
|
mic=""
|
|
else
|
|
mic=""
|
|
fi
|
|
|
|
printf "%s %s %s\\n" "$mic" "$icon" "$vol%"
|