dotfiles/eww/scripts/audio.sh
2024-08-26 11:05:11 -04:00

11 lines
234 B
Bash
Executable File

#!/bin/bash
MASTER_STATE=$(amixer sget Master | grep -Po "(?<=\[)(on)|(off)(?=\])" | head -n1)
if [ $MASTER_STATE = "off" ]
then
echo 0
else
echo $(amixer sget Master | grep -Po "(?<=\[)[[:digit:]]+(?=(%\]))" | head -n1)
fi