neodotfiles/user/.config/suckless/dwmblocks/scripts/block_volume

6 lines
170 B
Text
Raw Normal View History

2022-12-20 00:15:21 +00:00
#!/bin/bash
# Prints the current volume or 🔇 if muted.
2023-02-04 04:44:45 +00:00
[ $(pamixer --get-mute) = true ] && echo " vol: mut " && exit
2022-12-20 00:15:21 +00:00
vol="$(pamixer --get-volume)"
echo " vol: $vol% "