diff options
author | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-07-24 16:04:04 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@neptun.ravnborg.org> | 2006-09-30 05:19:19 -0400 |
commit | 458972132a705c4a869002354f7f10f395d08c18 (patch) | |
tree | a96e2804fd4926f0ba8dd8039e5837fb4cc22485 /scripts/kconfig/mconf.c | |
parent | 98e5a1579e7d34fe3803240750a1c48efcd9cb15 (diff) |
kconfig/lxdialog: add support for color themes and add blackbg theme
The blackbg theme was originally made by: Han Boetes
It was copied from a patch by "Randy.Dunlap" <rdunlap@xenotime.net>
which was also the inspiration source for the color theme support.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r-- | scripts/kconfig/mconf.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 7f973195e79a..ed22b13f8460 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c | |||
@@ -159,7 +159,20 @@ static const char mconf_readme[] = N_( | |||
159 | "\n" | 159 | "\n" |
160 | "Note that this mode can eventually be a little more CPU expensive\n" | 160 | "Note that this mode can eventually be a little more CPU expensive\n" |
161 | "(especially with a larger number of unrolled categories) than the\n" | 161 | "(especially with a larger number of unrolled categories) than the\n" |
162 | "default mode.\n"), | 162 | "default mode.\n" |
163 | "\n" | ||
164 | "Different color themes available\n" | ||
165 | "--------------------------------\n" | ||
166 | "It is possible to select different color themes using the variable\n" | ||
167 | "MENUCONFIG_COLOR. To select a theme use:\n" | ||
168 | "\n" | ||
169 | "make MENUCONFIG_COLOR=<theme> menuconfig\n" | ||
170 | "\n" | ||
171 | "Available themes are\n" | ||
172 | " mono => selects colors suitable for monochrome displays\n" | ||
173 | " blackbg => selects a color scheme with black background\n" | ||
174 | " classic => theme with blue background. The classic look. (default)\n" | ||
175 | "\n"), | ||
163 | menu_instructions[] = N_( | 176 | menu_instructions[] = N_( |
164 | "Arrow keys navigate the menu. " | 177 | "Arrow keys navigate the menu. " |
165 | "<Enter> selects submenus --->. " | 178 | "<Enter> selects submenus --->. " |