From b387fe59666bd1abd5e40f9b6363c65a8b448969 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Wed, 29 Nov 2023 19:15:01 +0100 Subject: [PATCH] feat(waybar): move the music icon to the left thanks mathis :-) --- modules/gui/waybar.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gui/waybar.nix b/modules/gui/waybar.nix index f854bdf..827731c 100644 --- a/modules/gui/waybar.nix +++ b/modules/gui/waybar.nix @@ -227,9 +227,9 @@ in { format = "X {}"; }; mpd = { - format = "{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) 󰝚"; - format-disconnected = "Disconnected 󰝚"; - format-stopped = "Stopped 󰝚"; + format = "󰝚 {artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S})"; + format-disconnected = "󰝚 Disconnected"; + format-stopped = "󰝚 Stopped"; interval = 1; tooltip-format = "MPD (connected)"; tooltip-format-disconnected = "MPD (disconnected)";