lol

Merge pull request #28552 from romildo/fix.oblogout

oblogout: add description for configuration options

authored by

Jörg Thalheim and committed by
GitHub
47295b46 520a43ce

+16
+16
nixos/modules/programs/oblogout.nix
··· 27 27 type = types.int; 28 28 default = 70; 29 29 description = '' 30 + Opacity percentage of Cairo rendered backgrounds. 30 31 ''; 31 32 }; 32 33 ··· 34 35 type = types.str; 35 36 default = "black"; 36 37 description = '' 38 + Colour name or hex code (#ffffff) of the background color. 37 39 ''; 38 40 }; 39 41 ··· 41 43 type = types.str; 42 44 default = "simplistic"; 43 45 description = '' 46 + Icon theme for the buttons, must be in the themes folder of 47 + the package, or in 48 + <filename>~/.themes/<name>/oblogout/</filename>. 44 49 ''; 45 50 }; 46 51 ··· 48 53 type = types.str; 49 54 default = "cancel, logout, restart, shutdown, suspend, hibernate"; 50 55 description = '' 56 + List and order of buttons to show. 51 57 ''; 52 58 }; 53 59 ··· 55 61 type = types.str; 56 62 default = "Escape"; 57 63 description = '' 64 + Cancel logout/shutdown shortcut. 58 65 ''; 59 66 }; 60 67 ··· 62 69 type = types.str; 63 70 default = "S"; 64 71 description = '' 72 + Shutdown shortcut. 65 73 ''; 66 74 }; 67 75 ··· 69 77 type = types.str; 70 78 default = "R"; 71 79 description = '' 80 + Restart shortcut. 72 81 ''; 73 82 }; 74 83 ··· 76 85 type = types.str; 77 86 default = "U"; 78 87 description = '' 88 + Suspend shortcut. 79 89 ''; 80 90 }; 81 91 ··· 83 93 type = types.str; 84 94 default = "L"; 85 95 description = '' 96 + Logout shortcut. 86 97 ''; 87 98 }; 88 99 ··· 90 101 type = types.str; 91 102 default = "K"; 92 103 description = '' 104 + Lock session shortcut. 93 105 ''; 94 106 }; 95 107 ··· 97 109 type = types.str; 98 110 default = "H"; 99 111 description = '' 112 + Hibernate shortcut. 100 113 ''; 101 114 }; 102 115 ··· 104 117 type = types.str; 105 118 default = "openbox --exit"; 106 119 description = '' 120 + Command to logout. 107 121 ''; 108 122 }; 109 123 ··· 111 125 type = types.str; 112 126 default = ""; 113 127 description = '' 128 + Command to lock screen. 114 129 ''; 115 130 }; 116 131 ··· 118 133 type = types.str; 119 134 default = ""; 120 135 description = '' 136 + Command to switch user. 121 137 ''; 122 138 }; 123 139 };