Files
dotfiles/Scripts/i3blocks_volume
T
2025-01-22 23:13:11 -05:00

8 lines
210 B
Bash
Executable File

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