1
1
mirror of https://github.com/rywng/dotfiles.git synced 2024-11-15 07:21:49 +08:00
dotfiles/.config/sway/scripts/getmute.sh
2022-08-25 09:45:10 +08:00

9 lines
184 B
Bash
Executable File

#!/bin/sh
if pactl get-sink-mute @DEFAULT_SINK@ | grep -q "yes"
then
echo "0"
else
pactl get-sink-volume @DEFAULT_SINK@ | head -n 1 | awk '{print substr($5, 1, length($5)-1)}'
fi