11.stylix/modules/waybar/hm.nix
awwpotato a742ba739b
waybar: add font option and change default to monospace (#972)
Add font option and change its default to monospace, and reduce the
scope of the 'with' keyword.

Closes: https://github.com/danth/stylix/issues/956
Link: https://github.com/danth/stylix/pull/972

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-03-10 16:55:50 +01:00

97 lines
3.1 KiB
Nix

{ config, lib, ... }:
let
cfg = config.stylix.targets.waybar;
colorlessModules = place: ''
.modules-${place} #workspaces button {
border-bottom: 3px solid transparent;
}
.modules-${place} #workspaces button.focused,
.modules-${place} #workspaces button.active {
border-bottom: 3px solid @base05;
}
'';
in
{
options.stylix.targets.waybar = {
enable = config.lib.stylix.mkEnableTarget "Waybar" true;
font = lib.mkOption {
type = lib.types.enum [
"serif"
"sansSerif"
"monospace"
"emoji"
];
default = "monospace";
example = "sansSerif";
description = "The font for waybar to use";
};
addCss = lib.mkOption {
type = lib.types.bool;
default = true;
description = "adds fully functional css (otherwise just adds colors and fonts)";
};
enableLeftBackColors = lib.mkOption {
type = lib.types.bool;
default = false;
description = "enables background colors on the left side of the bar";
};
enableCenterBackColors = lib.mkOption {
type = lib.types.bool;
default = false;
description = "enables background colors on the center of the bar";
};
enableRightBackColors = lib.mkOption {
type = lib.types.bool;
default = false;
description = "enables background colors on the right side of the bar";
};
};
config = lib.mkIf (config.stylix.enable && cfg.enable) {
programs.waybar.style =
with config.lib.stylix.colors.withHashtag;
''
@define-color base00 ${base00}; @define-color base01 ${base01}; @define-color base02 ${base02}; @define-color base03 ${base03};
@define-color base04 ${base04}; @define-color base05 ${base05}; @define-color base06 ${base06}; @define-color base07 ${base07};
@define-color base08 ${base08}; @define-color base09 ${base09}; @define-color base0A ${base0A}; @define-color base0B ${base0B};
@define-color base0C ${base0C}; @define-color base0D ${base0D}; @define-color base0E ${base0E}; @define-color base0F ${base0F};
* {
font-family: "${config.stylix.fonts.${cfg.font}.name}";
font-size: ${builtins.toString config.stylix.fonts.sizes.desktop}pt;
}
''
+ lib.optionalString cfg.addCss (
''
window#waybar, tooltip {
background: alpha(@base00, ${builtins.toString config.stylix.opacity.desktop});
color: @base05;
}
tooltip {
border-color: @base0D;
}
''
+ (builtins.readFile ./base.css)
+ (
if cfg.enableLeftBackColors then
(import ./colors.nix "left")
else
colorlessModules "left"
)
+ (
if cfg.enableCenterBackColors then
(import ./colors.nix "center")
else
colorlessModules "center"
)
+ (
if cfg.enableRightBackColors then
(import ./colors.nix "right")
else
colorlessModules "right"
)
);
};
}