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.
23 lines
574 B
23 lines
574 B
#!/bin/sh
|
|
|
|
vol="$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2}' | sed -e 's/\.//g' | sed 's/^0*//')"
|
|
|
|
if [ "$vol" -eq "0" ]; then
|
|
vol_info="^c#dfdfdf^ "
|
|
elif [ "$vol" -gt "70" ]; then
|
|
vol_info="^c#dfdfdf^ "
|
|
else
|
|
vol_info="^c#dfdfdf^ "
|
|
fi
|
|
|
|
$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -q '\[MUTED\]') && vol_info="^c#ff0000^ "
|
|
|
|
if wpctl get-volume @DEFAULT_SOURCE@ | grep -q '\[MUTED\]'; then
|
|
mic="^c#ff0000^ "
|
|
else
|
|
mic="^c#dfdfdf^ "
|
|
fi
|
|
|
|
vol=$(printf %3s $vol | tr ' ' ' ')
|
|
printf "^b#282828^%s%s^d^ %s %s" "$mic" "$vol_info" "$vol%"
|