river: add cursor size and background color (#968)

Respected the cursor size set in stylix and added a background color
because the Hyprland module includes one
This commit is contained in:
lanovets 2025-03-10 16:03:19 +00:00 committed by GitHub
parent a742ba739b
commit 9388f64ebe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,11 +5,17 @@
config.lib.stylix.mkEnableTarget "River" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.river.enable) {
wayland.windowManager.river.settings = {
border-color-focused = "0x${config.lib.stylix.colors.base0D}";
border-color-unfocused = "0x${config.lib.stylix.colors.base03}";
border-color-urgent = "0x${config.lib.stylix.colors.base08}";
xcursor-theme = config.stylix.cursor.name;
};
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 = "${cursor.name} ${toString cursor.size}";
};
};
}