feat(greetd): add option to only show on main monitor
This commit is contained in:
parent
3a3c8457da
commit
cd6d62efc5
4 changed files with 55 additions and 10 deletions
common
|
@ -14,6 +14,22 @@
|
|||
type = types.nullOr types.str;
|
||||
};
|
||||
|
||||
mainMonitor = mkOption {
|
||||
description = ''
|
||||
The name of the main monitor used for Hyprland and Regreet
|
||||
'';
|
||||
default = "null";
|
||||
type = types.nullOr types.str;
|
||||
};
|
||||
|
||||
greetdDupe = mkOption {
|
||||
description = ''
|
||||
If we should duplicate regreet on all monitors
|
||||
'';
|
||||
default = true;
|
||||
type = types.nullOr types.bool;
|
||||
};
|
||||
|
||||
fontSize = mkOption {
|
||||
type = types.nullOr types.float;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue