Update kickoff icon option description (#316)
Some checks are pending
GitHub Pages / publish (ubuntu-latest) (push) Waiting to run

This commit is contained in:
Heitor Augusto 2024-08-12 14:23:31 -03:00 committed by GitHub
parent 014decd42f
commit b3b9d4ce20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,12 @@ in
type = types.nullOr types.str;
default = null;
example = "start-here-kde-symbolic";
description = "The icon to use for the kickoff button.";
description = ''
The icon to use for the kickoff button.
This can also be used to specify a custom image for the kickoff button.
To do this, set the value to a absolute path to the image file.
'';
};
label = mkOption {
type = types.nullOr types.str;
@ -107,7 +112,8 @@ in
config = lib.recursiveUpdate {
General = lib.filterAttrs (_: v: v != null) (
{
icon = icon;
inherit icon pin;
menuLabel = label;
alphaSort = sortAlphabetically;
compactMode = compactDisplayStyle;
@ -116,9 +122,6 @@ in
applicationsDisplay = applicationsDisplayMode;
primaryActions = showButtonsFor;
showActionButtonCaptions = showActionButtonCaptions;
# Other useful options
pin = pin;
}
);
} settings;