mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
14 lines
496 B
Plaintext
14 lines
496 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 -c5 | sed 's/ //g')
|
||
|
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
|
||
|
|
||
|
mpcvolume=$(mpc volume)
|
||
|
|
||
|
echo "<fc=$color>${mpcvolume:7:10}</fc> <fc=#ebdbb2>-</fc> <fc=$color>$volume</fc>"
|