13 lines
305 B
Bash
Executable File
13 lines
305 B
Bash
Executable File
#!/bin/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
|