initial commit
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 3s

This commit is contained in:
sid 2026-02-23 20:34:35 +01:00
commit 95a533c876
451 changed files with 18255 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{ config, lib, ... }:
let
cfg = config.stylix;
target = cfg.targets.bemenu';
colors = config.lib.stylix.colors.withHashtag;
inherit (lib)
mkEnableOption
mkIf
mkOption
types
;
in
{
options.stylix.targets.bemenu' = {
enable = mkEnableOption "bemenu' target for Stylix.";
radius = mkOption {
type = types.int;
default = cfg.targets.hyprland.radius;
description = "Window corner radius in pixels.";
};
};
config = mkIf (cfg.enable && target.enable) {
stylix.targets.bemenu.enable = false;
programs.bemenu = mkIf (cfg.enable && target.enable) {
settings = {
border-radius = target.radius;
bdr = colors.blue; # Border
tb = colors.base00; # Title background
tf = colors.green; # Title foreground
fb = colors.base00; # Filter background
ff = colors.base05; # Filter foreground
cb = colors.base00; # Cursor background
cf = colors.base02; # Cursor foreground
nb = colors.base00; # Normal background
nf = colors.base05; # Normal foreground
hb = colors.base01; # Highlighted background
hf = colors.blue; # Highlighted foreground
fbb = colors.base00; # Feedback background
fbf = colors.base05; # Feedback foreground
sb = colors.base01; # Selected background
sf = colors.base05; # Selected foreground
ab = colors.base00; # Alternating background
af = colors.base05; # Alternating foreground
scb = colors.base00; # Scrollbar background
scf = colors.blue; # Scrollbar foreground
};
};
};
}