mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
oblogout: add description for configuration options
This commit is contained in:
parent
31ba3649ec
commit
51df72e4f6
1 changed files with 16 additions and 0 deletions
|
@ -27,6 +27,7 @@ in
|
||||||
type = types.int;
|
type = types.int;
|
||||||
default = 70;
|
default = 70;
|
||||||
description = ''
|
description = ''
|
||||||
|
Opacity percentage of Cairo rendered backgrounds.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,6 +35,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "black";
|
default = "black";
|
||||||
description = ''
|
description = ''
|
||||||
|
Colour name or hex code (#ffffff) of the background color.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -41,6 +43,9 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "simplistic";
|
default = "simplistic";
|
||||||
description = ''
|
description = ''
|
||||||
|
Icon theme for the buttons, must be in the themes folder of
|
||||||
|
the package, or in
|
||||||
|
<filename>~/.themes/<name>/oblogout/</filename>.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -48,6 +53,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "cancel, logout, restart, shutdown, suspend, hibernate";
|
default = "cancel, logout, restart, shutdown, suspend, hibernate";
|
||||||
description = ''
|
description = ''
|
||||||
|
List and order of buttons to show.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -55,6 +61,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "Escape";
|
default = "Escape";
|
||||||
description = ''
|
description = ''
|
||||||
|
Cancel logout/shutdown shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -62,6 +69,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "S";
|
default = "S";
|
||||||
description = ''
|
description = ''
|
||||||
|
Shutdown shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -69,6 +77,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "R";
|
default = "R";
|
||||||
description = ''
|
description = ''
|
||||||
|
Restart shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -76,6 +85,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "U";
|
default = "U";
|
||||||
description = ''
|
description = ''
|
||||||
|
Suspend shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -83,6 +93,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "L";
|
default = "L";
|
||||||
description = ''
|
description = ''
|
||||||
|
Logout shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -90,6 +101,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "K";
|
default = "K";
|
||||||
description = ''
|
description = ''
|
||||||
|
Lock session shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -97,6 +109,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "H";
|
default = "H";
|
||||||
description = ''
|
description = ''
|
||||||
|
Hibernate shortcut.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -104,6 +117,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "openbox --exit";
|
default = "openbox --exit";
|
||||||
description = ''
|
description = ''
|
||||||
|
Command to logout.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -111,6 +125,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "";
|
default = "";
|
||||||
description = ''
|
description = ''
|
||||||
|
Command to lock screen.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -118,6 +133,7 @@ in
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "";
|
default = "";
|
||||||
description = ''
|
description = ''
|
||||||
|
Command to switch user.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue