mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
12 lines
428 B
Plaintext
12 lines
428 B
Plaintext
![]() |
#! /bin/bash
|
||
|
|
||
|
volume=$(pactl list sinks | grep -A 7 'Name: alsa_output.usb-AudioQuest_inc._AudioQuest_DragonFly-00.analog-stereo' | tail -n 1 | sed 's/%.*//' | tail -c3)
|
||
|
mute=$(pactl list sinks | grep -A 6 'Name: alsa_output.usb-AudioQuest_inc._AudioQuest_DragonFly-00.analog-stereo' | tail -n 1 -c4 | sed 's/ //g')
|
||
|
if [ "$mute" == "yes" ]; then
|
||
|
color="#fb4934"
|
||
|
else
|
||
|
color="#b8bb26"
|
||
|
fi
|
||
|
|
||
|
echo "<fc=$color> $volume%</fc>"
|