12 lines
229 B
Plaintext
Raw Normal View History

2024-09-04 00:54:15 +06:00
#!/bin/sh
status=$(pactl list sinks | grep "Mute:" | awk '{print $2}')
volume=$(pactl list sinks | grep "Volume: front" | awk {'print $5'})
if [ "$status" = "no" ]; then
echo "󰋋 $volume"
else
echo "󰟎 $volume"
fi