1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Style waybar a little

This commit is contained in:
RGBCube 2023-11-26 15:58:08 +03:00
parent 5ff041b9b2
commit 6bc0d3c359
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ homeConfiguration, enabled, ... }:
{ upkgs, homeConfiguration, enabled, ... }:
homeConfiguration "nixos" {
programs.waybar = enabled {
@ -113,5 +113,20 @@ homeConfiguration "nixos" {
tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
};
}];
style = let
inherit (upkgs) theme;
in ''
* {
border: none;
border-radius: 0;
font-family: "OpenSans";
}
window#waybar {
background: #${theme.background};
color: #${theme.foreground};
}
'';
};
}