Files
dotfiles/i3blocks_volume
T
simon 485f926fb3 played with picom, added blur, border-radius, and global inactive
opacity. added icons to i3bar and roughly centered date/time. looks much
nicer
2025-01-22 23:09:10 -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