#!/bin/bash
# Prints the current volume or 🔇 if muted.
[ $(pamixer --get-mute) = true ] && echo " vol: mut " && exit
vol="$(pamixer --get-volume)"
echo " vol: $vol% "