1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Add "xf86cfg -textmode" to the list of options for configuring XFree86

4.X.

Suggested by:	many
This commit is contained in:
Murray Stokely 2002-04-06 02:42:27 +00:00
parent 7e25871d19
commit 2503fda0b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93919
2 changed files with 18 additions and 10 deletions

View File

@ -904,18 +904,22 @@ DMenu MenuSrcDistributions = {
DMenu MenuXF86Config = {
DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
"Please select the XFree86 configuration tool you want to use.",
"The first tool, xf86cfg, is fully graphical\n"
"The second tool, xf86config, is\n"
"The first option, xf86cfg, is fully graphical.\n"
"The second option provides a menu-based interface similar to\n"
"what you are currently using. "
"The third option, xf86config, is\n"
"a more simplistic shell-script based tool and less friendly to\n"
"new users, but it may work in situations where the fancier one\n"
"does not.",
"new users, but it may work in situations where the other options\n"
"do not.",
NULL,
NULL,
{ { "X Exit", "Exit this menu (returning to previous)",
NULL, dmenuExit },
{ "2 xf86cfg", "Fully graphical XFree86 configuration tool.",
NULL, dmenuSetVariable, NULL, VAR_XF86_CONFIG "=xf86cfg" },
{ "3 xf86config", "Shell-script based XFree86 configuration tool.",
{ "3 xf86cfg -textmode", "ncurses-based XFree86 configuration tool.",
NULL, dmenuSetVariable, NULL, VAR_XF86_CONFIG "=xf86cfg -textmode" },
{ "4 xf86config", "Shell-script based XFree86 configuration tool.",
NULL, dmenuSetVariable, NULL, VAR_XF86_CONFIG "=xf86config" },
{ "D XDesktop", "X already set up, just do desktop configuration.",
NULL, dmenuSubmenu, NULL, &MenuXDesktops },

View File

@ -904,18 +904,22 @@ DMenu MenuSrcDistributions = {
DMenu MenuXF86Config = {
DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
"Please select the XFree86 configuration tool you want to use.",
"The first tool, xf86cfg, is fully graphical\n"
"The second tool, xf86config, is\n"
"The first option, xf86cfg, is fully graphical.\n"
"The second option provides a menu-based interface similar to\n"
"what you are currently using. "
"The third option, xf86config, is\n"
"a more simplistic shell-script based tool and less friendly to\n"
"new users, but it may work in situations where the fancier one\n"
"does not.",
"new users, but it may work in situations where the other options\n"
"do not.",
NULL,
NULL,
{ { "X Exit", "Exit this menu (returning to previous)",
NULL, dmenuExit },
{ "2 xf86cfg", "Fully graphical XFree86 configuration tool.",
NULL, dmenuSetVariable, NULL, VAR_XF86_CONFIG "=xf86cfg" },
{ "3 xf86config", "Shell-script based XFree86 configuration tool.",
{ "3 xf86cfg -textmode", "ncurses-based XFree86 configuration tool.",
NULL, dmenuSetVariable, NULL, VAR_XF86_CONFIG "=xf86cfg -textmode" },
{ "4 xf86config", "Shell-script based XFree86 configuration tool.",
NULL, dmenuSetVariable, NULL, VAR_XF86_CONFIG "=xf86config" },
{ "D XDesktop", "X already set up, just do desktop configuration.",
NULL, dmenuSubmenu, NULL, &MenuXDesktops },