diff --git a/modules/home/desktop/status-bar/default.nix b/modules/home/desktop/status-bar/default.nix index 4818491..8c164bc 100644 --- a/modules/home/desktop/status-bar/default.nix +++ b/modules/home/desktop/status-bar/default.nix @@ -13,7 +13,14 @@ settings = [ { layer = "top"; - modules-right = [ "clock" ]; + modules-right = [ + "battery" + "clock" + ]; + "clock" = { + interval = 1; + format = "{:%F %T}"; + }; } ]; style = # css @@ -21,6 +28,12 @@ window#waybar { background-color: rgba(0, 0, 0, 0); } + + #clock { + padding-top: 5px; + padding-right: 5px; + color: #ffffff; + } ''; }; })