11.stylix/modules/river/hm.nix
Flameopathic 6a2e525887
stylix: optionalize cursor and disable by default (#943)
Closes: https://github.com/danth/stylix/issues/940
Link: https://github.com/danth/stylix/pull/943

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: Daniel Thwaites <danth@danth.me>
2025-03-14 14:48:06 +01:00

23 lines
705 B
Nix

{ config, lib, ... }:
{
options.stylix.targets.river.enable =
config.lib.stylix.mkEnableTarget "River" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.river.enable) {
wayland.windowManager.river.settings =
let
inherit (config.lib.stylix) colors;
inherit (config.stylix) cursor;
in
{
border-color-focused = "0x${colors.base0D}";
border-color-unfocused = "0x${colors.base03}";
border-color-urgent = "0x${colors.base08}";
background-color = "0x${colors.base00}";
xcursor-theme = lib.mkIf (
config.stylix.cursor != null
) "${cursor.name} ${toString cursor.size}";
};
};
}