dotfiles/_desktop/_scripts/sb-volume

6 lines
310 B
Plaintext
Raw Normal View History

2022-07-30 01:02:25 +02:00
#!/bin/bash
icon='\uf028 '
vol=$(pactl get-sink-volume @DEFAULT_SINK@ | awk -F' / ' '{print $2}' | tr -d '%')
[ $(pactl get-sink-mute @DEFAULT_SINK@ | awk -F': ' '{print $2}') = yes ] || [ "$vol" -eq 0 ] && printf "$icon <span foreground='#ffffff' background='#770000'>mute</span>" || printf "$icon ${vol}%%"