Use defaultMonitor instead of monitor

This commit is contained in:
DashieTM 2024-09-08 15:20:26 +02:00
parent 3ac742cc45
commit 2c45bcf6ad
8 changed files with 128 additions and 93 deletions

View file

@ -42,9 +42,13 @@
'';
};
custom_css = lib.mkOption {
default = { };
example = { };
type = with lib.types; attrsOf anything;
default = '''';
example = ''
#window {
border-radius: none;
}
'';
type = lib.types.lines;
description = ''
Custom anyrun css.
Will be merged with default css if enabled.
@ -133,7 +137,7 @@
border-radius: 10px;
}
''
++ config.mods.hyprland.anyrun.custom_css
+ config.mods.hyprland.anyrun.custom_css
else
config.mods.hyprland.anyrun.custom_css;
};