mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-28 00:04:57 +08:00
Former-commit-id: 09a9509d37
Former-commit-id: 75caa00883bacbdc94aba01849829e6bbb98a405
Former-commit-id: 4a0e0752bed13307db9a561f70812c70fe1383e5
16 lines
379 B
Bash
Executable file
16 lines
379 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# For Alsa
|
|
#amixer get Master | grep "${snd_cha}" | awk -F'[]%[]' '/%/ {if ($7 == "off") {print " "} else {printf "%d%% ", $2}}'
|
|
#
|
|
|
|
|
|
# For pulse
|
|
VOL="$(pactl list sinks | grep "Volume: " | awk '{print $5}' | head -1)"
|
|
MUTE="$(pactl list sinks | grep -i "mute" | head -1 | awk '{print $2}')"
|
|
|
|
if [[ "$MUTE" != "no" ]]; then
|
|
echo " "
|
|
else
|
|
echo "$VOL "
|
|
fi
|