mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-21 17:59:39 +01:00
mako: "settings" is an attrset, so use that as example too (#7330)
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
ff31a4677c
commit
080e8b48b0
1 changed files with 20 additions and 22 deletions
|
|
@ -108,29 +108,27 @@ in
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
default = { };
|
default = { };
|
||||||
example = ''
|
example = {
|
||||||
{
|
actions = true;
|
||||||
actions = true;
|
anchor = "top-right";
|
||||||
anchor = "top-right";
|
background-color = "#000000";
|
||||||
background-color = "#000000";
|
border-color = "#FFFFFF";
|
||||||
border-color = "#FFFFFF";
|
border-radius = 0;
|
||||||
border-radius = 0;
|
default-timeout = 0;
|
||||||
default-timeout = 0;
|
font = "monospace 10";
|
||||||
font = "monospace 10";
|
height = 100;
|
||||||
height = 100;
|
width = 300;
|
||||||
width = 300;
|
icons = true;
|
||||||
icons = true;
|
ignore-timeout = false;
|
||||||
ignore-timeout = false;
|
layer = "top";
|
||||||
layer = "top";
|
margin = 10;
|
||||||
margin = 10;
|
markup = true;
|
||||||
markup = true;
|
|
||||||
|
|
||||||
# Section example
|
# Section example
|
||||||
"actionable=true" = {
|
"actionable=true" = {
|
||||||
anchor = "top-left";
|
anchor = "top-left";
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
'';
|
|
||||||
description = ''
|
description = ''
|
||||||
Configuration settings for mako. Can include both global settings and sections.
|
Configuration settings for mako. Can include both global settings and sections.
|
||||||
All available options can be found here:
|
All available options can be found here:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue