2024-05-21 14:53:46 -07:00
|
|
|
{ config, lib, ... }:
|
2023-11-03 08:55:17 -07:00
|
|
|
let
|
2024-08-06 18:02:01 -07:00
|
|
|
inherit (config.catppuccin) sources pointerCursor;
|
2023-11-03 08:55:17 -07:00
|
|
|
cfg = config.wayland.windowManager.hyprland.catppuccin;
|
|
|
|
enable = cfg.enable && config.wayland.windowManager.hyprland.enable;
|
|
|
|
in
|
|
|
|
{
|
2024-06-28 09:29:30 -07:00
|
|
|
options.wayland.windowManager.hyprland.catppuccin =
|
|
|
|
lib.ctp.mkCatppuccinOpt { name = "hyprland"; }
|
|
|
|
// {
|
|
|
|
accent = lib.ctp.mkAccentOpt "hyprland";
|
|
|
|
};
|
2023-11-03 08:55:17 -07:00
|
|
|
|
2024-06-10 15:28:46 -07:00
|
|
|
config = lib.mkIf enable {
|
2024-06-24 20:13:58 -07:00
|
|
|
home.sessionVariables = lib.mkIf pointerCursor.enable {
|
2024-08-06 18:02:01 -07:00
|
|
|
HYPRCURSOR_SIZE = config.home.pointerCursor.size;
|
2024-06-24 20:13:58 -07:00
|
|
|
HYPRCURSOR_THEME = "catppuccin-${pointerCursor.flavor}-${pointerCursor.accent}-cursors";
|
2024-06-10 15:28:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
2024-10-08 09:59:36 -07:00
|
|
|
source = [
|
|
|
|
"${sources.hyprland}/themes/${cfg.flavor}.conf"
|
|
|
|
# Define accents in file to ensure they appear before user vars
|
|
|
|
(builtins.toFile "hyprland-${cfg.accent}-accent.conf" ''
|
|
|
|
$accent = ''$${cfg.accent}
|
|
|
|
$accentAlpha = ''$${cfg.accent}Alpha
|
|
|
|
'')
|
|
|
|
];
|
2024-06-10 15:28:46 -07:00
|
|
|
};
|
2024-05-07 17:36:12 -07:00
|
|
|
};
|
2023-11-03 08:55:17 -07:00
|
|
|
}
|