one round of waybar styling later

This commit is contained in:
2025-03-12 18:41:04 +02:00
parent 064870c638
commit 2e01b26e5a
10 changed files with 319 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
function _sanitize {
sed -r "s/(^[ ]*)|([ ]*$)//g" | sed -r 's/\&/\&/g' | sed -r 's/\"/\"/g' | sed -r "s/'/\'/g"
}
# {{artist}} — {{title}}
SONGNAME="$( playerctl -s -p cider,OCbwoy3_s_iPhone metadata -f "{{artist}} — {{title}}" | _sanitize )"
ALBUMNAME="$( playerctl -s -p cider,OCbwoy3_s_iPhone metadata album | _sanitize )"
if [ ${#SONGNAME} -gt 0 ] ; then
printf "{\"text\": \" $SONGNAME\", \"tooltip\": \"$ALBUMNAME\", \"class\":\"music\" }"
else
printf "{\"text\": \"\", \"tooltip\": \" \", \"class\":\"invisible\" }"
fi