mirror of
https://github.com/rywng/dotfiles.git
synced 2024-11-15 15:31:50 +08:00
9 lines
184 B
Bash
9 lines
184 B
Bash
|
#!/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
|