diff options
author | Soispha <soispha@vhack.eu> | 2024-03-23 20:45:14 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-23 20:45:14 +0100 |
commit | 016b2b784812f06288ad0d5494ab866203f8884b (patch) | |
tree | ca600dd24a01d373915348f84fd11ef2c08d7a19 | |
parent | fix(hm/conf/unison): Remove auto merge feature (diff) | |
download | nixos-config-016b2b784812f06288ad0d5494ab866203f8884b.tar.gz nixos-config-016b2b784812f06288ad0d5494ab866203f8884b.zip |
fix(hm/conf/yambar/scripts/mpd): Put a separator between title and time
-rwxr-xr-x | hm/soispha/conf/yambar/scripts/mpd_song_name.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/yambar/scripts/mpd_song_name.sh b/hm/soispha/conf/yambar/scripts/mpd_song_name.sh index 0f2e1917..2e80476a 100755 --- a/hm/soispha/conf/yambar/scripts/mpd_song_name.sh +++ b/hm/soispha/conf/yambar/scripts/mpd_song_name.sh @@ -9,7 +9,7 @@ while true; do if [ "$state" = "playing" ]; then song="$(mpc --format '[[%artist% - ]%title%]|[%file%]' current)" echo "playing|bool|true" - echo "song|string|$song $(mpc status "%currenttime%/%totaltime%")" + echo "song|string|$song :: $(mpc status "%currenttime%/%totaltime%")" else echo "playing|bool|false" fi |