Files
dotfiles/.config/fish/functions/bb.get_volume.fish
T

16 lines
286 B
Fish
Raw Normal View History

2026-05-16 13:01:39 -04:00
#!/bin/fish
function get_volume
if string match --regex '\[off\]' $(amixer sset Master toggle) 1>/dev/null
set -f ret $( pamixer --get-volume | sed 's/$/!/' )
else
set -f ret $( pamixer --get-volume )
end
#echo $ret > /tmp/xobpipe
echo $ret
end