1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-20 02:27:46 +01:00
2024-03-09 03:03:55 +01:00

23 lines
572 B
Bash
Executable File

#!/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" "$mic" "$vol_info" "$vol%"