diff options
| author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-30 19:46:11 +0100 | 
|---|---|---|
| committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-30 19:46:11 +0100 | 
| commit | 2fe94b7be114659c7eba3116972f857e999c3299 (patch) | |
| tree | 64ecf65b67190083a3028441aa74a91e1dd38f1c | |
| parent | UI fix (diff) | |
| download | arch-installer-2fe94b7be114659c7eba3116972f857e999c3299.tar.gz arch-installer-2fe94b7be114659c7eba3116972f857e999c3299.tar.bz2 arch-installer-2fe94b7be114659c7eba3116972f857e999c3299.tar.xz arch-installer-2fe94b7be114659c7eba3116972f857e999c3299.tar.zst arch-installer-2fe94b7be114659c7eba3116972f857e999c3299.zip | |
Added none option for desktop environments
Diffstat (limited to '')
| -rwxr-xr-x | arch-installer.sh | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch-installer.sh b/arch-installer.sh index 4a4de21..11667b3 100755 --- a/arch-installer.sh +++ b/arch-installer.sh @@ -96,7 +96,7 @@ jo_get_options() {  components to install:" 10 50 3 \  				   linux-lts "LTS Kernel" on \  				   utils "Utils (zip, vim, git...)" on \ -				   extras "Extras (Xorg, gst-plugins...)" off \ +				   extras "Extras (Xorg, DE...)" off \  				   3>&1 1>&2 2>&3 3>&-)  	if echo -n "$sel" | grep -q linux-lts; then  		ltskern=true @@ -114,7 +114,7 @@ jo_get_de() {  			  --yesno "Do you wish to install a graphical environment?"\  			  6 45; then  		sel=$(dialog --nocancel --title "$1"\ -					 --radiolist "Which desktop environment would you like to install?" 14 50 7 \ +					 --radiolist "Which desktop environment would you like to install?" 15 50 8 \  					 gnome "Gnome with gdm" on \  					 mate "MATE with lightdm" off \  					 kde "KDE Plasma with kdm" off \ @@ -123,6 +123,7 @@ jo_get_de() {  					 i3-gaps "i3-gaps with lightdm" off \  					 awesome "Awesome with lightdm" off \  					 bspwm "bspwm with lightdm" off \ +					 none "none of these" off \  					 3>&1 1>&2 2>&3 3>&-)  		if echo -n "$sel" | grep -q gnome; then  			gnome=true | 
