dwm-flexipatch/polybar/scripts/get-media-status-icon.sh
2024-03-30 20:03:08 -04:00

13 lines
313 B
Bash
Executable File

#!/usr/bin/env bash
mediaStatus=$(/home/sravan/.config/dwm-flexipatch/polybar/scripts/get-media-status.sh)
if [[ "$mediaStatus" == "N/A" ]]; then
echo "󰐎"
else
if [[ "$mediaStatus" == "Playing" ]]; then
echo "󰏤"
elif [[ "$mediaStatus" == "Paused" ]]; then
echo "󰐊"
fi
fi