Add waybar config from dwl

This commit is contained in:
Sravan Balaji
2025-04-27 08:50:37 -04:00
parent 9ad43ce4f1
commit f2b92f7938
10 changed files with 1384 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
mediaStatus=$(`dirname $0`/get-media-status.sh)
if [[ "$mediaStatus" == "N/A" ]]; then
echo "󰐎"
else
if [[ "$mediaStatus" == "Playing" ]]; then
echo "󰏤"
elif [[ "$mediaStatus" == "Paused" ]]; then
echo "󰐊"
fi
fi