5 lines
107 B
Bash
5 lines
107 B
Bash
#! /bin/sh
|
|
|
|
[ $(pamixer --get-mute) = true ] && echo " MUTED" && exit
|
|
echo " VOL $(pamixer --get-volume)%"
|