diff options
Diffstat (limited to 'pw-music')
-rwxr-xr-x | pw-music | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -7,17 +7,17 @@ case $STATUS in "Playing") TITLE=$(playerctl metadata title | sed s/_/\ /g) META="${TITLE:-Title}" - curstatus=" π΅ $META β" + curstatus=" π΅ $META \uE0b1" ;; "Paused") TITLE=$(playerctl metadata title | sed s/.m4a//g) META="${TITLE:-Title}" - curstatus=" βΈοΈ $META β" - ;; + curstatus=" || $META \uE0b1" + ;; *) - curstatus=" No Player β" + curstatus=" " ;; esac @@ -28,3 +28,5 @@ case "$BLOCK_BUTTON" in playerctl play-pause ;; esac + +exit 0 |