#!/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