pointfichiers/bar/eww/scripts/get-volume

13 lines
274 B
Text
Raw Normal View History

2024-01-25 14:39:08 +01:00
#!/bin/bash
volume (){
vol=$(pamixer --get-volume-human)
mic_vol=$(pamixer --default-source --get-volume-human)
echo "{\"speaker\": \"${vol^}\", \"mic\": \"${mic_vol^}\"}"
}
volume
pactl subscribe | grep --line-buffered "'change'" | while read -r line; do
volume
done