#!/bin/bash # Tint2 volume executor with ttf icons muted=$(LANG=C pactl list sinks | awk '/Mute/ { print $2 }') vol=$(LANG=C pactl list sinks | awk '/Volume:/ {printf "%s ",$5}' | cut -f1 -d ' ' | cut -f1 -d '%') if [[ $muted = "no" ]]; then if [[ $vol -ge 80 ]]; then echo "墳 $vol%" elif [[ $vol -ge 70 ]]; then echo "墳 $vol%" elif [[ $vol -ge 60 ]]; then echo "奔 $vol%" elif [[ $vol -ge 50 ]]; then echo "奔 $vol%" elif [[ $vol -ge 30 ]]; then echo "奔 $vol%" elif [[ $vol -ge 10 ]]; then echo "奄 $vol%" elif [[ $vol -ge 0 ]]; then echo "奄 $vol%" fi else echo "婢 $vol%" fi