]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/menubox11
Add 'contrib/wireguard-tools/' from commit '7e00bf8773b93a2a3ee28dba2710d2ae443989f1'
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / menubox11
1 #!/bin/sh
2 # $Id: menubox11,v 1.4 2020/11/26 00:09:12 tom Exp $
3 # zero-width column
4
5 . ./setup-vars
6
7 exec 3>&1
8 returntext=`$DIALOG --backtitle "Debian Configuration" \
9         --title "Configuring debconf" \
10         --default-item Dialog "$@" \
11         --menu "Packages that use debconf for configuration share a common look and feel. You can 
12 select the type of user interface they use.
13 \n\n\
14 The dialog frontend is a full-screen, character based interface, while the readline 
15 frontend uses a more traditional plain text interface, and both the gnome and kde 
16 frontends are modern X interfaces, fitting the respective desktops (but may be used 
17 in any X environment). The editor frontend lets you configure things using your 
18 favorite text editor. The noninteractive frontend never asks you any questions.
19 \n\n\
20 Interface to use:" 0 0 6 \
21         Dialog          "" \
22         Readline        "" \
23         Gnome           "" \
24         Kde             "" \
25         Editor          "" \
26         Noninteractive  "" \
27 2>&1 1>&3`
28 returncode=$?
29 exec 3>&-
30
31 . ./report-string