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