From 9c947d7992d455c3fdbda6ad2dff34547c36832c Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sun, 1 Jun 2025 19:05:29 +0800 Subject: [PATCH] feat(waybar): make background invisible --- modules/home/desktop/status-bar/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/home/desktop/status-bar/default.nix b/modules/home/desktop/status-bar/default.nix index c8db9ef..4818491 100644 --- a/modules/home/desktop/status-bar/default.nix +++ b/modules/home/desktop/status-bar/default.nix @@ -16,6 +16,12 @@ modules-right = [ "clock" ]; } ]; + style = # css + '' + window#waybar { + background-color: rgba(0, 0, 0, 0); + } + ''; }; }) ];