From b33b517c484f1473dd8d80632e3694f12a0e0edc Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Sat, 24 Aug 2024 18:27:10 +0100 Subject: [PATCH] =?UTF-8?q?styled=20waybar=20somewhat,=20added=20?= =?UTF-8?q?=F0=9F=94=94=20as=20notifications=20icon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home-manager/waybar.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/home-manager/waybar.nix b/home-manager/waybar.nix index d77349e..2e43a54 100644 --- a/home-manager/waybar.nix +++ b/home-manager/waybar.nix @@ -13,9 +13,9 @@ "DP-2" "DP-3" ]; - modules-left = [ "wlr/workspaces" "wlr/mode" "wlr/taskbar" ]; + modules-left = [ "wlr/taskbar" ]; modules-center = [ "clock" "custom/swaync" ]; - modules-right = [ "idle_inhibitor" "pulseaudio" "backlight" "battery" "tray" ]; + modules-right = [ "pulseaudio" "backlight" "battery" "tray" ]; "clock" = { "format" = "{:%A %d %b %T}"; # "tooltip" = true; @@ -26,14 +26,14 @@ "tooltip" = false; "format"= "{icon} {}"; "format-icons" = { - "notification" = "aa"; - "none" = "a"; - "dnd-notification" = "aa"; - "dnd-none" = "a"; - "inhibited-notification" = "aa"; - "inhibited-none" = "a"; - "dnd-inhibited-notification" = "aa"; - "dnd-inhibited-none" = "a"; + "notification" = "🔔🔔"; + "none" = "🔔"; + "dnd-notification" = "🔔🔔"; + "dnd-none" = "🔔"; + "inhibited-notification" = "🔔🔔"; + "inhibited-none" = "🔔"; + "dnd-inhibited-notification" = "🔔🔔"; + "dnd-inhibited-none" = "🔔"; }; "return-type" = "json"; "exec-if" = "which swaync-client"; @@ -45,8 +45,8 @@ }; }; style = '' - #custom-swaync { - padding: 5px; + .module { + margin: 0px 10px 0px 10px; } ''; };