diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-28 00:36:47 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-28 00:36:47 +0200 |
commit | 4790f80cfc5bd977b336f4a3e112ae9faeafb6bc (patch) | |
tree | 249530d9edbfb12bf9e5085685ee0cd1dfe0344b /pw-music | |
parent | 28dd2120a2551af6b901d37e66d23359298ec603 (diff) | |
download | scripts-4790f80cfc5bd977b336f4a3e112ae9faeafb6bc.tar.gz scripts-4790f80cfc5bd977b336f4a3e112ae9faeafb6bc.tar.bz2 scripts-4790f80cfc5bd977b336f4a3e112ae9faeafb6bc.zip |
update
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 |