6 lines
171 B
Text
6 lines
171 B
Text
|
#!/bin/bash
|
||
|
# Prints the current volume or 🔇 if muted.
|
||
|
[ $(pamixer --get-mute) = true ] && echo " VL: [MUT] " && exit
|
||
|
vol="$(pamixer --get-volume)"
|
||
|
echo " vol: $vol% "
|