Files
dotfiles/Scripts/i3blocks_volume
T
2024-12-01 12:30:15 -05:00

8 lines
212 B
Bash
Executable File

#!/bin/bash
if [ "$(pactl get-sink-mute @DEFAULT_SINK@)" = "Mute: yes" ]; then
echo "vol: mute"
else
echo "vol: $(pactl get-sink-volume @DEFAULT_SINK@ | awk '{printf "%s", substr($5, 1, length($5) - 1)}')"
fi