OSDN Git Service

Allow setting root and boot partitions before running
[pacbang-linux/installer-arch.git] / archlabs-installer
index de58ff1..fc3a768 100755 (executable)
 # Some ideas and code reworked from other resources
 # AIF, Cnichi, Calamares, Arch Wiki.. Credit where credit is due
 
-
-# linux distributor, if unset will be ArchLabs
-# this can be set in the environment prior to install, eg.
-#
-# $ DIST="My Distro" archlabs-installer
-#
-# will result in "My Distro Linux" used where needed
-: ${DIST="ArchLabs"}
-
-
-VER="2.0.60"     # installer version
-MNT="/mnt"       # install mountpoint
-ANS="/tmp/ans"   # dialog answer file
-
-# ------------------------------------------------------ #
-# When manually mounting your partitions, you need
-# to set these values to avoid using the mount menu.
-# ------------------------------------------------------ #
-
-# root partition, eg. /dev/sda2
-ROOT_PART=''
-
-# boot partition, required on UEFI eg. /dev/sda1
-BOOT_PART=''
-
-# boot device, used for some bootloaders eg. /dev/sda
-BOOT_DEV=''
-
-# bootloader to use, can be:
-#    UEFI: grub, syslinux, efistub, systemd-boot, refind-efi
-#    BIOS: grub, syslinux
-BOOTLDR=''
-
-# directory to mount the boot partition (if any) for most bootloaders
-# this will need to be 'boot' however a popular one for grub is 'boot/efi'
-BOOTDIR='boot'
-
-# ------------------------------------------------------ #
+VER=2.0.80
 
 # bulk default values {
 
-# these values will be selected during the install, it is not recommended
-# to edit them here unless you know what you're doing.
-
-UCODE=''          # cpu microcode (if any), can be: amd-ucode, intel-ucode
-KERNEL=''         # linux kernel, can be: linux, linux-lts, linux-zen, or linux-hardened
-MYSHELL=''        # full path for the shell, eg. /usr/bin/zsh
-
-SWAP_PART=''      # swap partition or file path
-SWAP_SIZE=''      # swap size, only used when creating a swapfile
-
-EXMNT=''          # holder for additional partitions while mounting
-EXMNTS=''         # when an extra partition is mounted append it's info
-
-FONT="ter-i16n"   # font used for the linux console
-HOOKS="shutdown"  # list of additional HOOKS to add in /etc/mkinitcpio.conf
-
-LOGIN_TYPE=''     # login manager can be: lightdm, xinit, ly
-LOGIN_WM=''       # default login session to be placed in ~/.xinitrc
-LOGINRC=''        # login shell rc file, eg. .zprofile, .bash_profile, .profile
-
-INSTALL_WMS=''    # space separated list of chosen wm/de
-
-WM_PKGS=''        # list of packages added during wm/de choice (not user edited)
-PACKAGES=''       # list of all packages to install including WM_PKGS (not user edited)
-USER_PKGS=''      # packages selected by the user during install
-
-NEWUSER=''        # username for the new user
-USER_PASS=''      # new user's password
-ROOT_PASS=''      # root password
-
-LUKS=''           # empty when not using encryption
-LUKS_DEV=''       # boot parameter string for LUKS
-LUKS_PART=''      # partition used for encryption
-LUKS_PASS=''      # encryption password
-LUKS_UUID=''      # encrypted partition UUID
-LUKS_NAME=''      # name used for encryption
-
-LVM=''            # empty when not using lvm
-LVM_PARTS=''      # partitions used for volume group
-VGROUP_MB=0       # available space in volume group
-
-WARN=''           # issued mounting/partitioning warning
-SEP_BOOT=''       # separate boot partition for BIOS
-AUTOLOGIN=''      # enable autologin for xinit
-CONFIG_DONE=''    # basic configuration is finished
-
-FORMATTED=''      # partitions we formatted and should allow skipping
-AUTO_ROOT_PART='' # root value from auto partition
-AUTO_BOOT_PART='' # boot value from auto partition
-
-# archlabs base
-AL_BASE_PKGS="archlabs-skel-base archlabs-fonts archlabs-themes archlabs-dARK archlabs-icons archlabs-wallpapers archlabs-scripts"
-
-# baseline (usually installed in the background)
-BASE_PKGS="base-devel xorg xorg-drivers sudo git gvfs gtk3 gtk-engines gtk-engine-murrine pavucontrol tumbler xdg-user-dirs "
-BASE_PKGS+="playerctl ffmpeg gstreamer libmad libmatroska gst-libav gst-plugins-base gst-plugins-good scrot bash-completion"
-
-# extras for window managers
-WM_BASE_PKGS="arandr archlabs-networkmanager-dmenu nitrogen polkit-gnome volumeicon xclip exo laptop-detect "
-WM_BASE_PKGS+="xdotool compton wmctrl gnome-keyring dunst feh gsimplecal xfce4-power-manager xfce4-settings"
-
+: ${DIST=ArchLabs}                 # distro name if not set
+MNT=/mnt                           # install mountpoint
+ANS=/tmp/ans                       # dialog answer file
+BOOTDIR=boot                       # location to mount boot partition
+FONT=ter-i16n                      # font used for the linux console
+HOOKS=shutdown                     # list of additional mkinitcpio HOOKS
+SEL=0                              # currently selected menu item
+SYS=Unknown                        # bios type to be determined: UEFI/BIOS
+ERR=/tmp/errlog                    # error log used internally
+DBG=/tmp/debuglog                  # debug log when passed -d
+RUN=/run/archiso/bootmnt/arch/boot # path for live system /boot
+VM="$(dmesg | grep -i hypervisor)" # system running in a virtual machine
+export DIALOGOPTS="--cr-wrap"      # see `man dialog`
+
+BASE_PKGS="base base-devel xorg xorg-drivers sudo git gvfs gtk3 libmad libmatroska tumbler "
+BASE_PKGS+="playerctl pulseaudio pulseaudio-alsa pavucontrol pamixer scrot xdg-user-dirs "
+BASE_PKGS+="ffmpeg gstreamer gst-libav gst-plugins-base gst-plugins-good bash-completion "
+
+AL_BASE_PKGS="archlabs-keyring archlabs-icons archlabs-fonts archlabs-themes "
+AL_BASE_PKGS+="archlabs-baph archlabs-wallpapers archlabs-scripts archlabs-skel-base"
+
+WM_BASE_PKGS="arandr nitrogen polkit-gnome network-manager-applet "
+WM_BASE_PKGS+="volumeicon xclip exo laptop-detect xdotool compton wmctrl feh "
+WM_BASE_PKGS+="gnome-keyring dunst gsimplecal xfce4-power-manager xfce4-settings"
 
-SEL=0                                 # currently selected menu item
-ERR="/tmp/errlog"                     # error log used internally
-DBG="/tmp/debuglog"                   # debug log when passed -d
-RUN="/run/archiso/bootmnt/arch/boot"  # path for live /boot
-VM="$(dmesg | grep -i "hypervisor")"  # is the system a vm
-SYS='Unknown'
-
-export DIALOGOPTS="--cr-wrap"
-
-# }
-
-# giant ugly variable container :P {
-
-# system RAM in MB
 SYS_MEM="$(awk '/MemTotal/ {print int($2 / 1024) "M"}' /proc/meminfo)"
-
-# locales from /etc/locale.gen
 LOCALES="$(awk '/\.UTF-8/ {gsub(/# .*|#/, ""); if ($1) {print $1 " - "}}' /etc/locale.gen)"
-
-# console keyboard mappings
 CMAPS="$(find /usr/share/kbd/keymaps -name '*.map.gz' | awk '{gsub(/\.map\.gz|.*\//, ""); print $1 " - "}' | sort)"
 
-# terminal size
 [[ $LINES ]] || LINES=$(tput lines)
 [[ $COLUMNS ]] || COLUMNS=$(tput cols)
-SHL=$((LINES - 20))
 
-# associative arrays
-# {
+# }
 
 # commands used to install each bootloader, however most get modified during runtime {
 declare -A BCMDS=(
-[refind-efi]='refind-install'                    # minor modification
-[grub]='grub-install --recheck --force'          # heavily modified
-[syslinux]='syslinux-install_update -i -a -m'    # modified on UEFI
-[efistub]='efibootmgr -v -d /dev/sda -p 1 -c -l' # heavily modified
-[systemd-boot]='bootctl --path=/boot install'    # not modified
+[refind-efi]='refind-install'
+[grub]='grub-install --recheck --force' [syslinux]='syslinux-install_update -i -a -m'
+[efistub]='efibootmgr -v -d /dev/sda -p 1 -c -l' [systemd-boot]='bootctl --path=/boot install'
 ) # }
 
 # executable name for each wm/de used in ~/.xinitrc {
 declare -A WM_SESSIONS=(
-[dwm]='dwm'
-[i3-gaps]='i3'
-[bspwm]='bspwm'
-[awesome]='awesome'
-[plasma]='startkde'
-[xfce4]='startxfce4'
-[gnome]='gnome-session'
-[fluxbox]='startfluxbox'
-[openbox]='openbox-session'
-[cinnamon]='cinnamon-session'
+[dwm]='dwm' [i3-gaps]='i3' [bspwm]='bspwm' [awesome]='awesome' [plasma]='startkde' [xfce4]='startxfce4'
+[gnome]='gnome-session' [fluxbox]='startfluxbox' [openbox]='openbox-session' [cinnamon]='cinnamon-session'
 ) # }
 
 # packages installed for each wm/de, most are depends of the skel packages {
 declare -A WM_EXT=(
-[dwm]=''                                    # NA
-[gnome]=''                                  # NA
-[cinnamon]='gnome-terminal'                 # doesn't install a terminal on it's own
-[plasma]='kdebase-meta'                     # base plasma application set
-[awesome]='archlabs-skel-awesome'           # see deps of archlabs-skel-awesome
-[bspwm]='archlabs-skel-bspwm'               # see deps of archlabs-skel-bspwm
-[fluxbox]='archlabs-skel-fluxbox'           # see deps of archlabs-skel-fluxbox
-[i3-gaps]='archlabs-skel-i3-gaps'           # see deps of archlabs-skel-i3-gaps
-[openbox]='archlabs-skel-openbox'           # see deps of archlabs-skel-openbox
-[xfce4]='archlabs-skel-xfce4 xfce4-goodies' # see deps of archlabs-skel-xfce4
+[dwm]='' [gnome]='' [cinnamon]='gnome-terminal' [plasma]='kdebase-meta'
+[awesome]='archlabs-skel-awesome' [bspwm]='archlabs-skel-bspwm' [fluxbox]='archlabs-skel-fluxbox'
+[i3-gaps]='archlabs-skel-i3-gaps' [openbox]='archlabs-skel-openbox' [xfce4]='archlabs-skel-xfce4 xfce4-goodies'
 ) # }
 
 # files offered for editing after install is complete {
 declare -A EDIT_FILES=(
 [login]='' # login is populated once we know the username and shell
-[fstab]='/etc/fstab'
-[sudoers]='/etc/sudoers'
-[crypttab]='/etc/crypttab'
-[pacman]='/etc/pacman.conf'
-[console]='/etc/vconsole.conf'
-[mkinitcpio]='/etc/mkinitcpio.conf'
-[hostname]='/etc/hostname /etc/hosts'
-[bootloader]="/boot/loader/entries/$DIST.conf"
-[locale]='/etc/locale.conf /etc/default/locale'
-[keyboard]='/etc/X11/xorg.conf.d/00-keyboard.conf /etc/default/keyboard'
+[fstab]='/etc/fstab' [sudoers]='/etc/sudoers' [crypttab]='/etc/crypttab' [pacman]='/etc/pacman.conf'
+[console]='/etc/vconsole.conf' [mkinitcpio]='/etc/mkinitcpio.conf' [hostname]='/etc/hostname /etc/hosts'
+[bootloader]="/boot/loader/entries/$DIST.conf"  # ** based on bootloader
+[locale]='/etc/locale.conf /etc/default/locale' [keyboard]='/etc/X11/xorg.conf.d/00-keyboard.conf /etc/default/keyboard'
 ) # }
 
-# mkfs command and flags for filesystem formatting {
-declare -A FS_CMDS=(
-[f2fs]='mkfs.f2fs'
-[jfs]='mkfs.jfs -q'
-[xfs]='mkfs.xfs -f'
-[ntfs]='mkfs.ntfs -q'
-[ext2]='mkfs.ext2 -q'
-[ext3]='mkfs.ext3 -q'
-[ext4]='mkfs.ext4 -q'
-[vfat]='mkfs.vfat -F32'
-[nilfs2]='mkfs.nilfs2 -q'
-[reiserfs]='mkfs.reiserfs -q'
+# mkfs command flags for filesystem formatting {
+declare -A FS_CMD_FLAGS=(
+[f2fs]='' [jfs]='-q' [xfs]='-f' [ntfs]='-q' [ext2]='-q' [ext3]='-q' [ext4]='-q' [vfat]='-F32' [nilfs2]='-q' [reiserfs]='-q'
 ) # }
 
 # mount options for each filesystem {
 declare -A FS_OPTS=(
-[vfat]=''  # NA
-[ntfs]=''  # NA
-[ext2]=''  # NA
-[ext3]=''  # NA
+[vfat]='' [ntfs]='' [ext2]='' [ext3]=''  # NA
 [jfs]='discard errors=continue errors=panic nointegrity'
 [reiserfs]='acl nolog notail replayonly user_xattr off'
 [ext4]='discard dealloc nofail noacl relatime noatime nobarrier nodelalloc'
@@ -220,10 +90,7 @@ declare -A FS_OPTS=(
 
 # packages installed for each login option {
 declare -A LOGIN_PKGS=(
-[xinit]='xorg-xinit'
-[ly]='archlabs-ly'
-[gdm]='gdm'
-[sddm]='sddm'
+[xinit]='xorg-xinit' [ly]='archlabs-ly' [gdm]='gdm' [sddm]='sddm'
 [lightdm]='lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings accountsservice'
 ) # }
 
@@ -231,34 +98,22 @@ declare -A LOGIN_PKGS=(
 # if a package requires additional packages that aren't already dependencies
 # they can be added here eg. [package]="extra"
 declare -A PKG_EXT=(
-[vlc]='qt4'
-[mpd]='mpc'
-[mupdf]='mupdf-tools'
-[qt5ct]='qt5-styleplugins'
-[vlc]='qt5ct qt5-styleplugins'
-[zathura]='zathura-pdf-poppler'
-[noto-fonts]='noto-fonts-emoji'
-[cairo-dock]='cairo-dock-plug-ins'
-[qutebrowser]='qt5ct qt5-styleplugins'
-[qbittorrent]='qt5ct qt5-styleplugins'
-[transmission-qt]='qt5ct qt5-styleplugins'
-[bluez]='bluez-libs bluez-utils bluez-tools bluez-plugins bluez-hid2hci'
-[kdenlive]='kdebase-meta dvdauthor frei0r-plugins breeze breeze-gtk qt5ct qt5-styleplugins'
+[vlc]='qt4' [mpd]='mpc' [mupdf]='mupdf-tools'
+[rxvt-unicode]='urxvt-pearls' [zathura]='zathura-pdf-poppler' [noto-fonts]='noto-fonts-emoji' [cairo-dock]='cairo-dock-plug-ins' [qt5ct]='qt5-styleplugins'
+[vlc]='qt5ct qt5-styleplugins' [qutebrowser]='qt5ct qt5-styleplugins' [qbittorrent]='qt5ct qt5-styleplugins' [transmission-qt]='qt5ct qt5-styleplugins'
+[bluez]='bluez-libs bluez-utils bluez-tools bluez-plugins bluez-hid2hci' [kdenlive]='kdebase-meta dvdauthor frei0r-plugins breeze breeze-gtk qt5ct qt5-styleplugins'
 ) # }
 
-# }
-
-# dialog text variables
-# {
-
+# dialog text variables {
 # Basics (somewhat in order)
+_welcome="\nThis will help you get $DIST installed and setup on your system.\n\nIf you are unsure about a section the default option will be listed or\nthe first selected item will be the default.\n\n\nMenu Navigation:\n\n - Select items with the arrow keys or the option number.\n - Use [Space] to toggle check boxes and [Enter] to accept.\n - Switch between fields using [Tab] or the arrow keys.\n - Use [Page Up] and [Page Down] to jump whole pages\n - Press the highlighted key of an option to select it.\n"
 _keymap="\nPick which keymap to use for the system from the list below\n\nThis is used once a graphical environment is running (Xorg).\n\nSystem default: us"
 _vconsole="\nSelect the console keymap, the console is the tty shell you reach before starting a graphical environment (Xorg).\n\nIts keymap is seperate from the one used by the graphical environments, though many do use the same such as 'us' English.\n\nSystem default: us"
 _device="\nSelect a device to use from the list below.\n\nDevices (/dev) are the available drives on the system. /sda, /sdb, /sdc ..."
 _resize="\nSelect a new filesystem size in MB, a new partition will be created from the free space but will be left unformatted.\nThe lowest size is just enough to fit the currently in use space on the partition while the default is set to split the free space evenly.\n\nUse Tab or the arrow keys move the cursor between the buttons and the value, when the cursor is on the value, you can edit it by:\n\n - left/right cursor movement to select a digit to modify\n - +/-  characters to increment/decrement the digit by one\n - 0 through 9 to set the digit to the given value\n\nSome keys are also recognized in all cursor positions:\n\n - Home/End set the value to its maximum or minimum\n - Pageup/Pagedown increment the value so that the slider moves by one column."
 _mount="\nUse [Space] to toggle mount options from below, press [Enter] when done to confirm selection.\n\nNot selecting any and confirming will run an automatic mount."
 _warn="\nIMPORTANT:\n\nChoose carefully when editing, formatting, and mounting partitions or your DATA MAY BE LOST.\n\nTo mount a partition without formatting it, select 'skip' when prompted to choose a filesystem during the mounting stage.\nThis can only be used for partitions that already contain a filesystem and cannot be the root (/) partition, it needs to be formatted before install.\n"
-_part="\nFull device auto partitioning is available for beginners otherwise cfdisk is recommended.\n\n  - All systems will require a root partition (8G or greater).\n  - UEFI (and BIOS using LUKS without LVM) require a separate boot partition (100-512M)."
+_part="\nFull device auto partitioning is available for beginners otherwise cfdisk is recommended.\n\n  - All systems will require a root partition (8G or greater).\n  - UEFI or BIOS using LUKS without LVM require a separate boot partition (100-512M)."
 _uefi="\nSelect the EFI boot partition (/boot), required for UEFI boot.\n\nIt's usually the first partition on the device, 100-512M, and will be formatted as vfat/fat32 if not already."
 _bios="\nDo you want to use a separate boot partition? (optional)\n\nIt's usually the first partition on the device, 100-512M, and will be formatted as ext3/4 if not already."
 _biosluks="\nSelect the boot partition (/boot), required for LUKS.\n\nIt's usually the first partition on the device, 100-512M, and will be formatted as ext3/4 if not already."
@@ -275,7 +130,7 @@ _sessions="\nUse [Space] to toggle available sessions, use [Enter] to accept the
 _login="\nSelect which of your session choices to use for the initial login.\n\nYou can be change this later by editing your ~/.xinitrc"
 _autologin="\nDo you want autologin enabled for USER?\n\nIf so the following two files will be created (disable autologin by removing them):\n\n - /home/USER/RC (run startx when logging in on tty1)\n - /etc/systemd/system/getty@tty1.service.d/autologin.conf (login USER without password)\n"
 _packages="\nUse [Space] to move a package into the selected area and press [Enter] to accept the selection.\n\nPackages may be installed by your DE/WM (if any), or for the packages you select."
-_edit="\nBefore exiting you can select configuration files to review/change.\n\nIf you need to make other changes with the drives still mounted, use Ctrl-z to pause the installer, when finished type 'fg' and [Enter] or Ctrl-z again to resume the installer, if you want to avoid the automatic reboot using Ctrl-c will cleanly exit."
+_edit="\nBefore exiting you can select configuration files to review/change.\n\nIf you need to make other changes with the drives still mounted, use Ctrl-z to pause the installer, when finished type 'fg' and [Enter] to resume the installer, if you want to avoid the automatic reboot using Ctrl-c will cleanly exit."
 
 # LUKS
 _luksnew="Basic LUKS Encryption"
@@ -306,8 +161,6 @@ _lvmerrlvsize="\nInvalid value Entered.\n\nMust be a numeric value with 'M' (meg
 
 # }
 
-# }
-
 ###############################################################################
 # selection menus
 # main is the entry point which calls functions including outside of its block
@@ -420,14 +273,12 @@ select_login()
 
        AUTOLOGIN='' # no autologin unless using xinit
 
-       if [[ -z $LOGIN_TYPE ]]; then
-               dlg LOGIN_TYPE menu "Login Management" "\nSelect what kind of login management to use." \
-                       "xinit"   "Console login without a display manager" \
-                       "ly"      "TUI display manager with a ncurses-like interface" \
-                       "lightdm" "Lightweight display manager with a gtk greeter" \
-                       "gdm"     "Gnome display manager" \
-                       "sddm"    "Simple desktop display manager" || return 1
-       fi
+       dlg LOGIN_TYPE menu "Login Management" "\nSelect what kind of login management to use." \
+               "xinit"   "Console login without a display manager" \
+               "ly"      "TUI display manager with a ncurses-like interface" \
+               "lightdm" "Lightweight display manager with a gtk greeter" \
+               "gdm"     "Gnome display manager" \
+               "sddm"    "Simple desktop display manager" || return 1
 
        case $LOGIN_TYPE in
                ly) EDIT_FILES[login]="/etc/ly/config.ini" ;;
@@ -452,9 +303,9 @@ select_config()
        until [[ $CONFIG_DONE ]]; do
                case $i in
                        0) dlg MYSHELL menu "Shell" "\nChoose which shell to use." \
-                                       /usr/bin/zsh  'A very advanced and programmable command interpreter (shell) for UNIX' \
-                                       /bin/bash     'The GNU Bourne Again shell, standard in many GNU/Linux distributions' \
-                                       /usr/bin/mksh 'The MirBSD Korn Shell - an enhanced version of the public domain ksh' || return 1
+                                       zsh  'A very advanced and programmable command interpreter (shell) for UNIX' \
+                                       bash 'The GNU Bourne Again shell, standard in many GNU/Linux distributions' \
+                                       mksh 'The MirBSD Korn Shell - an enhanced version of the public domain ksh' || return 1
                                ;;
                        1) dlg MYHOST input "Hostname" "$_hostname" "${DIST,,}" limit || { i=0; continue; } ;;
                        2) dlg MYLOCALE menu "Locale" "$_locale" $LOCALES || { i=1; continue; } ;;
@@ -475,7 +326,11 @@ select_config()
                (( i++ )) # progress through to the next choice
        done
 
-       case $MYSHELL in *bash) LOGINRC='.bash_profile' ;; *zsh) LOGINRC='.zprofile' ;; *mksh) LOGINRC='.profile' ;; esac
+       case $MYSHELL in
+               bash) LOGINRC='.bash_profile' ;;
+               zsh) LOGINRC='.zprofile' ;;
+               mksh) LOGINRC='.profile' ;;
+       esac
 
        return 0
 }
@@ -483,40 +338,37 @@ select_config()
 select_mkuser()
 {
        NEWUSER=''
-       local v='' u='' p='' p2='' rp='' rp2=''
+       typeset -a ans
 
        until [[ $NEWUSER ]]; do
-               i=0
                tput cnorm
                dialog --insecure --backtitle "$DIST Installer - $SYS - v$VER" --separator $'\n' --title " User " --mixedform "$_user" 0 0 0 \
-                       "Username:"  1 1 "$u" 1 11 "$COLUMNS" 0 0 \
-                       "Password:"  2 1 ''   2 11 "$COLUMNS" 0 1 \
-                       "Password2:" 3 1 ''   3 12 "$COLUMNS" 0 1 \
+                       "Username:"  1 1 "${ans[0]}" 1 11 "$COLUMNS" 0 0 \
+                       "Password:"  2 1 ''          2 11 "$COLUMNS" 0 1 \
+                       "Password2:" 3 1 ''          3 12 "$COLUMNS" 0 1 \
                        "--- Root password, if left empty the user password will be used ---" 6 1 '' 6 68 "$COLUMNS" 0 2 \
-                       "Password:"  8 1 ''   8 11 "$COLUMNS" 0 1 \
-                       "Password2:" 9 1 ''   9 12 "$COLUMNS" 0 1 2>"$ANS" || return 1
+                       "Password:"  8 1 ''          8 11 "$COLUMNS" 0 1 \
+                       "Password2:" 9 1 ''          9 12 "$COLUMNS" 0 1 2>"$ANS" || return 1
 
-               while read -r line; do
-                       case $i in 0) u="$line" ;; 1) p="$line" ;; 2) p2="$line" ;; 3) rp="$line" ;; 4) rp2="$line" ;; esac
-                       (( i++ ))
-               done < "$ANS"
+               mapfile -t ans <"$ANS"
 
                # root passwords empty, so use the user passwords
-               [[ -z $rp && -z $rp2 ]] && { rp="$p"; rp2="$p2"; }
+               if [[ -z "${ans[4]}" && -z "${ans[5]}" ]]; then
+                       ans[4]="${ans[1]}"
+                       ans[5]="${ans[2]}"
+               fi
 
                # make sure a username was entered and that the passwords match
-               if [[ ${#u} -eq 0 || $u =~ \ |\' || $u =~ [^a-z0-9] ]]; then
-                       msg "Invalid Username" "\nIncorrect user name.\n\nPlease try again.\n"; u=''
-               elif [[ -z $p ]]; then
-                       msg "Empty Password" "\nThe user password cannot be left empty.\n\nPlease try again.\n"
-               elif [[ "$p" != "$p2" ]]; then
+               if [[ -z ${ans[0]} || ${ans[0]} =~ \ |\' || ${ans[0]} =~ [^a-z0-9] ]]; then
+                       msg "Invalid Username" "\nInvalid user name.\n\nPlease try again.\n"; u=''
+               elif [[ -z "${ans[1]}" || "${ans[1]}" != "${ans[2]}" ]]; then
                        msg "Password Mismatch" "\nThe user passwords do not match.\n\nPlease try again.\n"
-               elif [[ "$rp" != "$rp2" ]]; then
+               elif [[ "${ans[4]}" != "${ans[5]}" ]]; then
                        msg "Password Mismatch" "\nThe root passwords do not match.\n\nPlease try again.\n"
                else
-                       NEWUSER="$u"
-                       USER_PASS="$p"
-                       ROOT_PASS="$rp"
+                       NEWUSER="${ans[0]}"
+                       USER_PASS="${ans[1]}"
+                       ROOT_PASS="${ans[4]}"
                fi
        done
        return 0
@@ -552,10 +404,10 @@ select_keymap()
                dlg CMAP menu "Console Keymap" "$_vconsole" $CMAPS || return 1
        fi
 
-       if [[ $DISPLAY && $TERM != 'linux' ]]; then
-               setxkbmap "$KEYMAP" >/dev/null 2>&1
-       else
+       if [[ $TERM == 'linux' ]]; then
                loadkeys "$CMAP" >/dev/null 2>&1
+       else
+               setxkbmap "$KEYMAP" >/dev/null 2>&1
        fi
 
        return 0
@@ -564,18 +416,17 @@ select_keymap()
 select_sessions()
 {
        LOGIN_CHOICES=''
-
        dlg INSTALL_WMS check "Sessions" "$_sessions\n" \
-               i3-gaps "A fork of i3wm with more features including gaps" "$(ofn i3-gaps "${INSTALL_WMS[*]}")" \
                openbox "A lightweight, powerful, and highly configurable stacking wm" "$(ofn openbox "${INSTALL_WMS[*]}")" \
-               awesome "A customized Awesome WM session created by @elanapan" "$(ofn awesome "${INSTALL_WMS[*]}")" \
+               i3-gaps "A fork of i3wm with more features including gaps" "$(ofn i3-gaps "${INSTALL_WMS[*]}")" \
                dwm "A dynamic WM for X that manages windows in tiled, floating, or monocle layouts" "$(ofn dwm "${INSTALL_WMS[*]}")" \
                bspwm "A tiling wm that represents windows as the leaves of a binary tree" "$(ofn bspwm "${INSTALL_WMS[*]}")" \
+               xfce4 "A lightweight and modular desktop environment based on gtk+2/3" "$(ofn xfce4 "${INSTALL_WMS[*]}")" \
+               awesome "A customized Awesome WM session created by @elanapan" "$(ofn awesome "${INSTALL_WMS[*]}")" \
                fluxbox "A lightweight and highly-configurable window manager" "$(ofn fluxbox "${INSTALL_WMS[*]}")" \
-               gnome "A desktop environment that aims to be simple and easy to use" "$(ofn gnome "${INSTALL_WMS[*]}")" \
-               cinnamon "A desktop environment combining traditional desktop with modern effects" "$(ofn cinnamon "${INSTALL_WMS[*]}")" \
                plasma "A kde software project currently comprising a full desktop environment" "$(ofn plasma "${INSTALL_WMS[*]}")" \
-               xfce4 "A lightweight and modular desktop environment based on gtk+2/3" "$(ofn xfce4 "${INSTALL_WMS[*]}")"
+               gnome "A desktop environment that aims to be simple and easy to use" "$(ofn gnome "${INSTALL_WMS[*]}")" \
+               cinnamon "A desktop environment combining traditional desktop with modern effects" "$(ofn cinnamon "${INSTALL_WMS[*]}")"
 
        [[ $INSTALL_WMS ]] || return 0
 
@@ -583,9 +434,6 @@ select_sessions()
        WM_PKGS="${WM_PKGS//  / }"    # remove double spaces
        WM_PKGS="${WM_PKGS# }"        # remove leading space
 
-       # add archlabs base when choosing any session
-       [[ $WM_PKGS ]] && WM_PKGS+=" $AL_BASE_PKGS"
-
        for i in $INSTALL_WMS; do
                LOGIN_CHOICES+="$i - "
                [[ ${WM_EXT[$i]} && $WM_PKGS != *"${WM_EXT[$i]}"* ]] && WM_PKGS+=" ${WM_EXT[$i]}"
@@ -617,7 +465,6 @@ select_packages()
                cmus "A small, fast and powerful console music player" "$(ofn cmus "${USER_PKGS[*]}")" \
                deadbeef "A GTK+ audio player for GNU/Linux" "$(ofn deadbeef "${USER_PKGS[*]}")" \
                deluge "A BitTorrent client written in python" "$(ofn deluge "${USER_PKGS[*]}")" \
-               docky "Full fledged dock for opening applications and managing windows" "$(ofn docky "${USER_PKGS[*]}")" \
                emacs "An extensible, customizable, self-documenting real-time display editor" "$(ofn emacs "${USER_PKGS[*]}")" \
                epiphany "A GNOME web browser based on the WebKit rendering engine" "$(ofn epiphany "${USER_PKGS[*]}")" \
                evince "A document viewer" "$(ofn evince "${USER_PKGS[*]}")" \
@@ -650,7 +497,6 @@ select_packages()
                nautilus "The default file manager for Gnome" "$(ofn nautilus "${USER_PKGS[*]}")" \
                ncmpcpp "A mpd client and almost exact clone of ncmpc with some new features" "$(ofn ncmpcpp "${USER_PKGS[*]}")" \
                neovim "A fork of Vim aiming to improve user experience, plugins, and GUIs." "$(ofn neovim "${USER_PKGS[*]}")" \
-               nicotine+ "A graphical client for Soulseek" "$(ofn nicotine+ "${USER_PKGS[*]}")" \
                noto-fonts "Google Noto fonts" "$(ofn noto-fonts "${USER_PKGS[*]}")" \
                noto-fonts-cjk "Google Noto CJK fonts (Chinese, Japanese, Korean)" "$(ofn noto-fonts-cjk "${USER_PKGS[*]}")" \
                obs-studio "Free opensource streaming/recording software" "$(ofn obs-studio "${USER_PKGS[*]}")" \
@@ -688,12 +534,12 @@ select_packages()
                xapps "Common library for X-Apps project" "$(ofn xapps "${USER_PKGS[*]}")" \
                xarchiver "A GTK+ frontend to various command line archivers" "$(ofn xarchiver "${USER_PKGS[*]}")" \
                xed "A small and lightweight text editor. X-Apps Project." "$(ofn xed "${USER_PKGS[*]}")" \
-               xfce-terminal "A terminal emulator based in the Xfce Desktop Environment" "$(ofn xfce-terminal "${USER_PKGS[*]}")" \
+               xfce4-terminal "A terminal emulator based in the Xfce Desktop Environment" "$(ofn xfce4-terminal "${USER_PKGS[*]}")" \
                xreader "Document viewer for files like PDF and Postscript. X-Apps Project." "$(ofn xed "${USER_PKGS[*]}")" \
                xterm "The standard terminal emulator for the X window system" "$(ofn xterm "${USER_PKGS[*]}")" \
                zathura "Minimalistic document viewer" "$(ofn zathura "${USER_PKGS[*]}")"
 
-       if [[ $USER_PKGS ]]; then
+       if [[ $USER_PKGS ]]; then    # add any needed PKG_EXT to the list
                for i in $USER_PKGS; do
                        [[ ${PKG_EXT[$i]} && $USER_PKGS != *"${PKG_EXT[$i]}"* ]] && USER_PKGS+=" ${PKG_EXT[$i]}"
                done
@@ -709,7 +555,7 @@ select_packages()
 
 part_menu()
 {
-       is_bg_install || return 0
+       no_bg_install || return 0
        local device choice devhash
        devhash="$(lsblk -f | base64)"
        umount_dir $MNT
@@ -718,26 +564,15 @@ part_menu()
 
        while :; do
                choice=""
-               if [[ $DISPLAY && $TERM != 'linux' ]] && hash gparted >/dev/null 2>&1; then
-                       dlg choice menu "Edit Partitions" "$_part" \
-                               "auto"    "Whole device automatic partitioning" \
-                               "shrink"  "Shrink an existing ext2/3/4 or ntfs partition to make room for a new partition" \
-                               "gparted" "GUI front end to parted" \
-                               "cfdisk"  "Curses based variant of fdisk" \
-                               "parted"  "GNU partition editor" \
-                               "fdisk"   "Dialog-driven creation and manipulation of partitions" \
-                               "done"    "Return to the main menu" || return 0
-               else
-                       dlg choice menu "Edit Partitions" "$_part" \
-                               "auto"   "Whole device automatic partitioning" \
-                               "shrink" "Shrink an existing ext2/3/4 or ntfs partition to make room for a new partition" \
-                               "cfdisk" "Curses based variant of fdisk" \
-                               "parted" "GNU partition editor" \
-                               "fdisk"  "Dialog-driven creation and manipulation of partitions" \
-                               "done"   "Return to the main menu" || return 0
-               fi
-
-               if [[ $choice == 'done' ]]; then
+               dlg choice menu "Edit Partitions" "$_part\n\n$(lsblk -no NAME,MODEL,SIZE,TYPE,FSTYPE $device)" \
+                       "auto"   "Whole device automatic partitioning" \
+                       "shrink" "Shrink an existing ext or ntfs partition" \
+                       "cfdisk" "Curses based variant of fdisk" \
+                       "parted" "GNU partition editor" \
+                       "fdisk"  "Dialog-driven creation and manipulation of partitions" \
+                       "done"   "Return to the main menu"
+
+               if [[ -z $choice || $choice == 'done' ]]; then
                        return 0
                elif [[ $choice == 'shrink' ]]; then
                        part_shrink "$device"
@@ -761,15 +596,14 @@ part_menu()
                                txt+="A $boot_fs efi boot partition (512M)\n- "
                        fi
                        txt+="An ext4 partition using all remaining space ($root_size)\n\nDo you want to continue?\n"
-                       yesno "Auto Partition" "$txt" && msg "Info" "\nGathering device info.\n" 0 && part_auto "$device" "$table" "$boot_fs" "$root_size"
-                               
+                       yesno "Auto Partition" "$txt" && part_auto "$device" "$table" "$boot_fs" "$root_size"
                else
                        clear
                        tput cnorm
                        $choice "$device"
                fi
                if [[ $devhash != "$(lsblk -f | base64)" ]]; then
-                       msg "Probing Partitions" "\nInforming the kernel of partition changes using partprobe.\n" 0
+                       msg "Probing Partitions" "\nInforming kernel of partition changes using partprobe\n" 0
                        partprobe >/dev/null 2>&1
                        [[ $choice == 'auto' ]] && return
                fi
@@ -824,7 +658,6 @@ part_auto()
        AUTO_ROOT_PART="$(lsblk -lno NAME,TYPE "$device" | awk 'NR==3 {print "/dev/" $1}')"
        mkfs.ext4 -q "$AUTO_ROOT_PART" >/dev/null 2>&1
        sleep 0.5
-       FORMATTED+="$AUTO_BOOT_PART $AUTO_ROOT_PART "
        msg "Auto Partition" "\nProcess complete.\n\n$(lsblk -o NAME,MODEL,SIZE,TYPE,FSTYPE "$device")\n"
 }
 
@@ -836,7 +669,7 @@ part_shrink()
 
        part_find "${device##*/}[^ ]" || return 1
        (( COUNT == 1 )) && part="$(awk '{print $1}' <<< "${PARTS[@]}" )"
-       
+
        if (( COUNT == 1 )) || dlg part menu "Resize" "\nWhich partition on $device do you want to resize?" $PARTS; then
                fs=$(lsblk -lno FSTYPE "$part")
                case "$fs" in
@@ -957,7 +790,7 @@ part_mount()
        fs="$(lsblk -lno FSTYPE "$part")"
        mkdir -p "$mountp"
 
-       if [[ $fs && ${FS_OPTS[$fs]} && $part != "$BOOT_PART" ]] && select_mntopts "$fs"; then
+       if [[ $fs && ${FS_OPTS[$fs]} && $part != "$BOOT_PART" && $part != "$AUTO_ROOT_PART" ]] && select_mntopts "$fs"; then
                mount -o "$MNT_OPTS" "$part" "$mountp" >/dev/null 2>&1
        else
                mount "$part" "$mountp" >/dev/null 2>&1
@@ -974,8 +807,8 @@ part_format()
        local part="$1" fs="$2" delay="$3"
 
        msg "Format" "\nFormatting $part as $fs\n" 0
-       ${FS_CMDS[$fs]} "$part" >/dev/null 2>$ERR
-       errshow "${FS_CMDS[$fs]} $part" || return 1
+       mkfs.$fs ${FS_CMD_FLAGS[$fs]} "$part" >/dev/null 2>$ERR
+       errshow "mkfs.$fs ${FS_CMD_FLAGS[$fs]} "$part"" || return 1
        FORMATTED+="$part "
        sleep "${delay:-0}"
 }
@@ -1023,7 +856,6 @@ part_cryptlv()
        if lsblk -lno TYPE "$part" | grep -q 'crypt'; then
                LUKS='encrypted'
                LUKS_NAME="${part#/dev/mapper/}"
-
                for dev in $(awk '/lvm/ && /crypto_LUKS/ {print "/dev/mapper/"$1}' <<< "$devs" | uniq); do
                        if lsblk -lno NAME "$dev" | grep -q "$LUKS_NAME"; then
                                LUKS_DEV="$LUKS_DEV cryptdevice=$dev:$LUKS_NAME"
@@ -1031,7 +863,6 @@ part_cryptlv()
                                break
                        fi
                done
-
                for dev in $(awk '/part/ && /crypto_LUKS/ {print "/dev/"$1}' <<< "$devs" | uniq); do
                        if lsblk -lno NAME "$dev" | grep -q "$LUKS_NAME"; then
                                LUKS_UUID="$(lsblk -lno UUID,TYPE,FSTYPE "$dev" | awk '/part/ && /crypto_LUKS/ {print $1}')"
@@ -1039,18 +870,15 @@ part_cryptlv()
                                break
                        fi
                done
-
        elif lsblk -lno TYPE "$part" | grep -q 'lvm'; then
                LVM='logical volume'
                VNAME="${part#/dev/mapper/}"
-
                for dev in $(awk '/crypt/ && /lvm2_member/ {print "/dev/mapper/"$1}' <<< "$devs" | uniq); do
                        if lsblk -lno NAME "$dev" | grep -q "$VNAME"; then
                                LUKS_NAME="${dev/\/dev\/mapper\//}"
                                break
                        fi
                done
-
                for dev in $(awk '/part/ && /crypto_LUKS/ {print "/dev/"$1}' <<< "$devs" | uniq); do
                        if lsblk -lno NAME "$dev" | grep -q "$LUKS_NAME"; then
                                LUKS_UUID="$(lsblk -lno UUID,TYPE,FSTYPE "$dev" | awk '/part/ && /crypto_LUKS/ {print $1}')"
@@ -1092,7 +920,7 @@ part_mountconf()
 mount_menu()
 {
        msg "Info" "\nGathering device info.\n" 0
-       is_bg_install || return 0
+       no_bg_install || return 0
        lvm_detect
        umount_dir $MNT
        part_find 'part|lvm|crypt' || { SEL=2; return 1; }
@@ -1179,6 +1007,7 @@ select_mountpoint()
                        EXMNT=''
                fi
        done
+       msg "Mount Extra" "\nMounting Finished\n\n\nNo extra partitions available to mount, returning to main menu.\n" 2
        return 0
 }
 
@@ -1188,8 +1017,11 @@ select_filesystem()
        local txt="\nSelect which filesystem to use for: $part\n\nDefault:  ext4"
        cur="$(lsblk -lno FSTYPE "$part" 2>/dev/null)"
 
+       # bail early if the partition was created in part_auto()
+       [[ $cur && $part == "$AUTO_ROOT_PART" ]] && return 0
+
        until [[ $fs ]]; do
-               if [[ $cur && ($part != "$ROOT_PART" || $FORMATTED == *"$part"*) ]]; then
+               if [[ $cur && $FORMATTED == *"$part"* ]]; then
                        dlg fs menu "Filesystem" "$txt\nCurrent:  $cur" skip - ext4 - ext3 - ext2 - vfat - ntfs - f2fs - jfs - xfs - nilfs2 - reiserfs - || return 1
                else
                        dlg fs menu "Filesystem" "$txt" ext4 - ext3 - ext2 - vfat - ntfs - f2fs - jfs - xfs - nilfs2 - reiserfs - || return 1
@@ -1202,31 +1034,33 @@ select_filesystem()
 
 select_efi_partition()
 {
-       if [[ $AUTO_BOOT_PART ]]; then
-               msg "EFI Boot Partition" "\nUsing partition created during automatic format.\n" 2
-               BOOT_PART="$AUTO_BOOT_PART"; return 0 # were done here
-       else
-               local pts size dev isize bsize ptcount=0
-
-               # walk partition list and skip ones that are too small/big for boot
-               while read -r dev size; do
-                       size_t="${size: -1:1}"  # size type eg. K, M, G, T
-                       isize=${size:0:-1}      # remove trailing size type character
-                       isize=${isize%.*}       # remove any decimal (round down)
-                       [[ $size_t =~ [KT] || ($size_t == 'G' && $isize -gt 2) || ($size_t == 'M' && $isize -lt 100) ]] || { pts+="$dev $size "; (( ptcount++ )); }
-               done <<< "$PARTS"
-
-               if (( ptcount == 1 )); then
-                       msg "EFI Boot Partition" "\nOnly one partition available that meets size requirements.\n" 1
-                       BOOT_PART="$(awk 'NF > 0 {print $1}' <<< "$pts")"
+       if [[ -z $BOOT_PART ]]; then
+               if [[ $AUTO_BOOT_PART ]]; then
+                       BOOT_PART="$AUTO_BOOT_PART"
+                       return 0 # were done here
                else
-                       dlg BOOT_PART menu "EFI Partition" "$_uefi" $pts
+                       local pts size dev isize bsize ptcount=0
+
+                       # walk partition list and skip ones that are too small/big for boot
+                       while read -r dev size; do
+                               size_t="${size: -1:1}"  # size type eg. K, M, G, T
+                               isize=${size:0:-1}      # remove trailing size type character
+                               isize=${isize%.*}       # remove any decimal (round down)
+                               [[ $size_t =~ [KT] || ($size_t == 'G' && $isize -gt 2) || ($size_t == 'M' && $isize -lt 100) ]] || { pts+="$dev $size "; (( ptcount++ )); }
+                       done <<< "$PARTS"
+
+                       if (( ptcount == 1 )); then
+                               msg "EFI Boot Partition" "\nOnly one partition available that meets size requirements.\n" 1
+                               BOOT_PART="$(awk 'NF > 0 {print $1}' <<< "$pts")"
+                       else
+                               dlg BOOT_PART menu "EFI Partition" "$_uefi" $pts
+                       fi
                fi
        fi
 
-       [[ $BOOT_PART ]] || return 1
-
-       if grep -q 'fat' <<< "$(fsck -N "$BOOT_PART")"; then
+       if [[ -z $BOOT_PART ]]; then
+               return 1
+       elif grep -q 'fat' <<< "$(fsck -N "$BOOT_PART")"; then
                local txt="\nIMPORTANT:\n\nThe EFI partition $BOOT_PART $_format"
                if yesno "Format EFI Partition" "$txt" "Format $BOOT_PART" "Skip Formatting" 1; then
                        part_format "$BOOT_PART" "vfat" 2
@@ -1240,26 +1074,28 @@ select_efi_partition()
 
 select_boot_partition()
 {
-       if [[ $AUTO_BOOT_PART && ! $LVM ]]; then
-               msg "BIOS Boot Partition" "\nUsing partition created during automatic format.\n" 2
-               BOOT_PART="$AUTO_BOOT_PART"; return 0 # were done here
-       else
-               local pts size dev isize bsize ptcount=0
-
-               # walk partition list and skip ones that are too small/big for boot
-               while read -r dev size; do
-                       size_t="${size: -1:1}"  # size type eg. K, M, G, T
-                       isize=${size:0:-1}      # remove trailing size type character
-                       isize=${isize%.*}       # remove any decimal (round down)
-                       [[ $size_t =~ [KT] || ($size_t == 'G' && $isize -gt 2) || ($size_t == 'M' && $isize -lt 100) ]] || { pts+="$dev $size "; (( ptcount++ )); }
-               done <<< "$PARTS"
-
-               if [[ $LUKS && ! $LVM ]]; then
-                       dlg BOOT_PART menu "Boot Partition" "$_biosluks" $pts
-                       [[ $BOOT_PART ]] || return 1
+       if [[ -z $BOOT_PART ]]; then
+               if [[ $AUTO_BOOT_PART && ! $LVM ]]; then
+                       BOOT_PART="$AUTO_BOOT_PART"
+                       return 0 # were done here
                else
-                       dlg BOOT_PART menu "Boot Partition" "$_bios" "skip" "don't use a separate boot" $pts
-                       [[ -z $BOOT_PART || $BOOT_PART == "skip" ]] && { BOOT_PART=''; return 0; }
+                       local pts size dev isize bsize ptcount=0
+
+                       # walk partition list and skip ones that are too small/big for boot
+                       while read -r dev size; do
+                               size_t="${size: -1:1}"  # size type eg. K, M, G, T
+                               isize=${size:0:-1}      # remove trailing size type character
+                               isize=${isize%.*}       # remove any decimal (round down)
+                               [[ $size_t =~ [KT] || ($size_t == 'G' && $isize -gt 2) || ($size_t == 'M' && $isize -lt 100) ]] || { pts+="$dev $size "; (( ptcount++ )); }
+                       done <<< "$PARTS"
+
+                       if [[ $LUKS && ! $LVM ]]; then
+                               dlg BOOT_PART menu "Boot Partition" "$_biosluks" $pts
+                               [[ $BOOT_PART ]] || return 1
+                       else
+                               dlg BOOT_PART menu "Boot Partition" "$_bios" "skip" "don't use a separate boot" $pts
+                               [[ -z $BOOT_PART || $BOOT_PART == "skip" ]] && { BOOT_PART=''; return 0; }
+                       fi
                fi
        fi
 
@@ -1276,34 +1112,36 @@ select_boot_partition()
 
 select_root_partition()
 {
-       if [[ $AUTO_ROOT_PART && -z $LVM && -z $LUKS ]]; then
-               ROOT_PART="$AUTO_ROOT_PART"
-               msg "Select Root Partition (/)" "\nUsing partition created during automatic format.\n" 2
-               part_mount "$ROOT_PART" || { ROOT_PART=''; return 1; }
-               return 0  # we're done here
-       else
-               local pts size dev isize bsize ptcount=0
-
-               # walk partition list and skip ones that are too small for / (root)
-               while read -r dev size; do
-                       size_t="${size: -1:1}"  # size type eg. K, M, G, T
-                       isize=${size:0:-1}      # remove trailing size type character
-                       isize=${isize%.*}       # remove any decimal (round down)
-                       [[ $size_t =~ [MK] || ($size_t == 'G' && $isize -lt 4) ]] || { pts+="$dev $size "; (( ptcount++ )); }
-               done <<< "$PARTS"
-
-               if (( ptcount == 1 )); then  # only one available device
-                       msg "Select Root Partition (/)" "\nOnly one partition available that meets size requirements.\n" 2
-                       ROOT_PART="$(awk 'NR==1 {print $1}' <<< "$pts")"
+       if [[ -z $ROOT_PART ]]; then
+               if [[ $AUTO_ROOT_PART && -z $LVM && -z $LUKS ]]; then
+                       ROOT_PART="$AUTO_ROOT_PART"
+                       msg "Mount Menu" "\nUsing partitions created during automatic format.\n" 2
+                       part_mount "$ROOT_PART" || { ROOT_PART=''; return 1; }
+                       return 0  # we're done here
                else
-                       dlg ROOT_PART menu "Mount Root" "\nSelect the root (/) partition, this is where $DIST will be installed.\n\nDevices smaller than 8G will not be shown here." $pts
+                       local pts size dev isize bsize ptcount=0
+
+                       # walk partition list and skip ones that are too small for / (root)
+                       while read -r dev size; do
+                               size_t="${size: -1:1}"  # size type eg. K, M, G, T
+                               isize=${size:0:-1}      # remove trailing size type character
+                               isize=${isize%.*}       # remove any decimal (round down)
+                               [[ $size_t =~ [MK] || ($size_t == 'G' && $isize -lt 4) ]] || { pts+="$dev $size "; (( ptcount++ )); }
+                       done <<< "$PARTS"
+
+                       if (( ptcount == 1 )); then  # only one available device
+                               msg "Root Partition (/)" "\nOnly one partition available that meets size requirements.\n" 2
+                               ROOT_PART="$(awk 'NF > 0 {print $1}' <<< "$pts")"
+                       else
+                               dlg ROOT_PART menu "Mount Root" "\nSelect the root (/) partition, this is where $DIST will be installed.\n\nDevices smaller than 8G will not be shown here." $pts
+                       fi
                fi
        fi
-       [[ $ROOT_PART ]] || return 1
-
-       select_filesystem "$ROOT_PART" || { ROOT_PART=''; return 1; }
-       part_mount "$ROOT_PART" || { ROOT_PART=''; return 1; }
 
+       if [[ -z $ROOT_PART ]] || ! select_filesystem "$ROOT_PART" || ! part_mount "$ROOT_PART"; then
+               ROOT_PART=''
+               return 1
+       fi
        return 0
 }
 
@@ -1338,8 +1176,6 @@ select_extra_partitions()
 
 install_main()
 {
-       clear
-       tput cnorm
        install_base
        genfstab -U $MNT >$MNT/etc/fstab 2>$ERR
        errshow 1 "genfstab -U $MNT >$MNT/etc/fstab"
@@ -1368,7 +1204,7 @@ install_main()
                        login      "${EDIT_FILES[login]}"
 
                if [[ -z $choice || $choice == 'finished' ]]; then
-                       [[ $DEBUG == true && -r $DBG ]] && vim $DBG
+                       [[ $DEBUG == true && -r $DBG ]] && ${EDITOR:-vim} $DBG
                        clear && die 127
                else
                        local exists=''
@@ -1376,7 +1212,7 @@ install_main()
                                [[ -e ${MNT}$f ]] && exists+=" ${MNT}$f"
                        done
                        if [[ $exists ]]; then
-                               vim -O $exists
+                               ${EDITOR:-vim} -O $exists
                        else
                                msg "File Missing" "\nThe file(s) selected do not exist:\n\n${EDIT_FILES[$choice]}\n"
                        fi
@@ -1386,29 +1222,25 @@ install_main()
 
 install_base()
 {
-       if kill -0 "$RSYNC_PID" 2>/dev/null || kill -0 "$MIRROR_PID" 2>/dev/null; then
-               printf "\nOne or more background install processes are still running, grabbing their output...\n" && cat /tmp/bg_out
-               while kill -0 "$RSYNC_PID" 2>/dev/null || kill -0 "$MIRROR_PID" 2>/dev/null; do
-                       sleep 1
-               done
-       fi
+       clear
+       tput cnorm
+       while kill -0 $BG_PID 2>/dev/null; do
+               clear; printf "\nA background install process is still running...\n"; sleep 1
+       done
        trap - EXIT
-       unset RSYNC_PID MIRROR_PID
+       unset BG_PID
 
        rm -rf $MNT/etc/mkinitcpio-archiso.conf
        find $MNT/usr/lib/initcpio -name 'archiso*' -type f -delete
-       sed -i 's/volatile/auto/g' $MNT/etc/systemd/journald.conf
+       sed -i 's/#\(Storage=\)volatile/\1auto/' $MNT/etc/systemd/journald.conf
        find $MNT/boot -name '*-ucode.img' -delete
 
-       if [[ $DIST != "ArchLabs" ]]; then
-               for f in $MNT/etc/{lsb-release,os-release}; do
-                       sed -i "s/ArchLabs/$DIST/g" $MNT/etc/{lsb-release,os-release}
-               done
-       fi
+       [[ $DIST != "ArchLabs" ]] || sed -i "s/ArchLabs/$DIST/g" $MNT/etc/{lsb-release,os-release}
 
        if [[ $VM ]]; then
                find $MNT/etc/X11/xorg.conf.d/ -name '*.conf' -delete
        elif lspci | grep ' VGA ' | grep -q 'Intel'; then
+               echo "Creating Intel VGA Tear Free config /etc/X11/xorg.conf.d/20-intel.conf"
                cat > $MNT/etc/X11/xorg.conf.d/20-intel.conf <<- EOF
                Section "Device"
                    Identifier  "Intel Graphics"
@@ -1418,13 +1250,13 @@ install_base()
                EOF
        fi
 
-       [[ -e /run/archiso/sfs/airootfs && $KERNEL == 'linux' ]] && cp -vf $RUN/x86_64/vmlinuz $MNT/boot/vmlinuz-linux
-
-       cp -fv /etc/resolv.conf $MNT/etc/
+       [[ -e /run/archiso/sfs/airootfs ]] && cp -vf $RUN/x86_64/vmlinuz $MNT/boot/vmlinuz-linux
+       [[ -d /etc/netctl ]] && cp -rfv /etc/netctl $MNT/etc/
+       [[ -f /etc/resolv.conf ]] && cp -fv /etc/resolv.conf $MNT/etc/
        [[ -e /etc/NetworkManager/system-connections ]] && cp -rvf /etc/NetworkManager/system-connections $MNT/etc/NetworkManager/
 
        echo "LANG=$MYLOCALE" > $MNT/etc/locale.conf
-       cp -f $MNT/etc/locale.conf $MNT/etc/default/locale
+       cp -fv $MNT/etc/locale.conf $MNT/etc/default/locale
        sed -i "s/#en_US.UTF-8/en_US.UTF-8/g; s/#${MYLOCALE}/${MYLOCALE}/g" $MNT/etc/locale.gen
        chrun "locale-gen"
        chrun "ln -svf /usr/share/zoneinfo/$ZONE/$SUBZ /etc/localtime"
@@ -1489,15 +1321,12 @@ install_boot()
        if [[ $SYS == 'UEFI' ]]; then
                # some UEFI firmware requires a generic esp/BOOT/BOOTX64.EFI
                mkdir -pv $MNT/$BOOTDIR/EFI/BOOT
-               if [[ $BOOTLDR == 'grub' ]]; then
-                       cp -fv $MNT/$BOOTDIR/EFI/$DIST/grubx64.efi $MNT/$BOOTDIR/EFI/BOOT/BOOTX64.EFI
-               elif [[ $BOOTLDR == 'syslinux' ]]; then
-                       cp -rf $MNT/$BOOTDIR/EFI/syslinux/* $MNT/$BOOTDIR/EFI/BOOT/
-                       cp -f $MNT/$BOOTDIR/EFI/syslinux/syslinux.efi $MNT/$BOOTDIR/EFI/BOOT/BOOTX64.EFI
-               elif [[ $BOOTLDR == 'refind-efi' ]]; then
-                       sed -i '/#extra_kernel_version_strings/ c extra_kernel_version_strings linux-hardened,linux-zen,linux-lts,linux' $MNT/$BOOTDIR/EFI/refind/refind.conf
-                       cp -fv $MNT/$BOOTDIR/EFI/refind/refind_x64.efi $MNT/$BOOTDIR/EFI/BOOT/BOOTX64.EFI
-               fi
+               case "$BOOTLDR" in
+                       grub) cp -fv $MNT/$BOOTDIR/EFI/$DIST/grubx64.efi $MNT/$BOOTDIR/EFI/BOOT/BOOTX64.EFI ;;
+                       syslinux) cp -rf "$MNT/$BOOTDIR/EFI/syslinux/"* $MNT/$BOOTDIR/EFI/BOOT/ && cp -f $MNT/$BOOTDIR/EFI/syslinux/syslinux.efi $MNT/$BOOTDIR/EFI/BOOT/BOOTX64.EFI ;;
+                       refind-efi) sed -i '/#extra_kernel_version_strings/ c extra_kernel_version_strings linux-hardened,linux-zen,linux-lts,linux' $MNT/$BOOTDIR/EFI/refind/refind.conf
+                               cp -fv $MNT/$BOOTDIR/EFI/refind/refind_x64.efi $MNT/$BOOTDIR/EFI/BOOT/BOOTX64.EFI ;;
+               esac
        fi
 
        return 0
@@ -1505,71 +1334,73 @@ install_boot()
 
 install_user()
 {
-       echo "Creating new user $NEWUSER and setting password"
        rm -f $MNT/root/.zshrc  # remove welcome message from root zshrc
 
        chrun "chpasswd <<< 'root:$ROOT_PASS'" 2>$ERR
        errshow 1 "set root password"
-       if [[ $MYSHELL != "/usr/bin/zsh" ]]; then # root uses zsh by default, change it if something else was chosen
-               chrun "usermod -s $MYSHELL root" 2>$ERR
-               errshow 1 "usermod -s $MYSHELL root"
-               # copy the default mkshrc to /root if mksh was picked
-               [[ $MYSHELL == '/usr/bin/mksh' ]] && cp -fv $MNT/etc/skel/.mkshrc $MNT/root/.mkshrc
+       if [[ $MYSHELL != 'zsh' ]]; then # root uses zsh by default
+               chrun "usermod -s /bin/$MYSHELL root" 2>$ERR
+               errshow 1 "usermod -s /bin/$MYSHELL root"
+               # copy the default mkshrc to /root if it was selected
+               [[ $MYSHELL == 'mksh' ]] && cp -fv $MNT/etc/skel/.mkshrc $MNT/root/.mkshrc
        fi
 
+       echo "Creating new user $NEWUSER and setting password"
        local groups='audio,floppy,log,network,rfkill,scanner,storage,optical,power,wheel'
 
-       chrun "useradd -m -u 1000 -g users -G $groups -s $MYSHELL $NEWUSER" 2>$ERR
-       errshow 1 "useradd -m -u 1000 -g users -G $groups -s $MYSHELL $NEWUSER"
+       chrun "useradd -m -u 1000 -g users -G $groups -s /bin/$MYSHELL $NEWUSER" 2>$ERR
+       errshow 1 "useradd -m -u 1000 -g users -G $groups -s /bin/$MYSHELL $NEWUSER"
        chrun "chpasswd <<< '$NEWUSER:$USER_PASS'" 2>$ERR
        errshow 1 "set $NEWUSER password"
 
-       # if neovim was picked copy vim configs to ~/.config/nvim
-       if [[ $USER_PKGS == *neovim* ]]; then
-               mkdir -p $MNT/home/$NEWUSER/.config/nvim
-               cp -fv $MNT/home/$NEWUSER/.vimrc $MNT/home/$NEWUSER/.config/nvim/init.vim
-               cp -rfv $MNT/home/$NEWUSER/.vim/colors $MNT/home/$NEWUSER/.config/nvim/colors
+       if [[ $INSTALL_WMS == *dwm* ]];then
+               mkdir -pv "$MNT/home/$NEWUSER/suckless"
+               for i in dwm dmenu st; do
+                       if chrun "git clone https://git.suckless.org/$i /home/$NEWUSER/suckless/$i"; then
+                               chrun "cd /home/$NEWUSER/suckless/$i; make prefix=/usr install; make clean"
+                       else
+                               printf "failed to clone %s repo\n" "$i"
+                       fi
+               done
        fi
 
-       [[ $INSTALL_WMS == *dwm* ]] && install_suckless
-
-       [[ $WM_PKGS == *xfce* ]] && echo 'volumeicon &' >> $MNT/home/$NEWUSER/.xprofile
+       [[ $MYSHELL != 'bash' ]] && rm -rf "$MNT/home/$NEWUSER/.bash"*
+       [[ $MYSHELL != 'zsh' ]] && rm -rf "$MNT/home/$NEWUSER/.z"*
 
        # remove some commands from ~/.xprofile when using KDE or Gnome as the login session
-       if [[ $LOGIN_WM =~ (startkde|gnome-session) || ($LOGIN_TYPE =~ (lightdm|ly) && $WM_PKGS =~ (plasma|gnome)) ]]; then
-               sed -i '/super/d' $MNT/home/$NEWUSER/.xprofile $MNT/root/.xprofile
-               sed -i '/nitrogen/d' $MNT/home/$NEWUSER/.xprofile $MNT/root/.xprofile
-               sed -i '/compton/d' $MNT/home/$NEWUSER/.xprofile $MNT/root/.xprofile
+       if [[ $LOGIN_WM =~ (startkde|gnome-session) || ($LOGIN_TYPE != 'xinit' && $WM_PKGS =~ (plasma|gnome)) ]]; then
+               sed -i '/super/d; /nitrogen/d; /compton/d' "$MNT/home/$NEWUSER/.xprofile" "$MNT/root/.xprofile"
+       elif [[ $LOGIN_WM == 'dwm' ]]; then # and dwm
+               sed -i '/super/d; /compton/d' "$MNT/home/$NEWUSER/.xprofile" "$MNT/root/.xprofile"
        fi
 
        # create user home directories (Music, Documents, Downloads, etc..)
        chrun 'xdg-user-dirs-update'
-       
+
        return 0
 }
 
 install_login()
 {
        local serv="$MNT/etc/systemd/system/getty@tty1.service.d"
-
        echo "Setting up $LOGIN_TYPE"
-
        case $LOGIN_TYPE in
                ly|sddm|gdm|lightdm)
+                       if [[ $LOGIN_WM == *dwm* ]]; then # dwm doesn't include an xsession file for display managers
+                               mkdir -p $MNT/usr/share/xsessions
+                               cat >$MNT/usr/share/xsessions/dwm.desktop <<- EOF
+                               [Desktop Entry]
+                               Encoding=UTF-8
+                               Name=Dwm
+                               Comment=Dynamic Window Manager
+                               Exec=dwm
+                               Type=XSession
+                               EOF
+                       fi
                        rm -rf "$serv" "$MNT/home/$NEWUSER/.xinitrc"
                        chrun "systemctl enable $LOGIN_TYPE.service" 2>$ERR
                        errshow 1 "systemctl enable $LOGIN_TYPE.service"
-                       if [[ $LOGIN_TYPE == 'lightdm' ]]; then
-                               cat > $MNT/etc/lightdm/lightdm-gtk-greeter.conf <<- EOF
-                               [greeter]
-                               default-user-image=/usr/share/icons/ArchLabs-Dark/64x64/places/distributor-logo-archlabs.png
-                               background=/usr/share/backgrounds/archlabs/archlabs.jpg
-                               theme-name=Adwaita-dark
-                               icon-theme-name=Adwaita
-                               font-name=DejaVu Sans Mono 11
-                               position=30%,end 50%,end
-                               EOF
-                       fi
+                       ${LOGIN_TYPE}_config
                        ;;
                xinit)
                        if [[ $INSTALL_WMS ]]; then
@@ -1582,7 +1413,7 @@ install_login()
                                sed -i "s/root/${NEWUSER}/g" $serv/autologin.conf
                                cat > "$MNT/home/$NEWUSER/$LOGINRC" <<- EOF
                                # automatically run startx when logging in on tty1
-                               [ -z \$DISPLAY ] && [ \$XDG_VTNR -eq 1 ] && exec startx
+                               [ -z "\$DISPLAY" ] && [ \$XDG_VTNR -eq 1 ] && startx
                                EOF
                        else
                                rm -rf $serv
@@ -1594,36 +1425,28 @@ install_login()
 install_packages()
 {
        local rmpkg="archlabs-installer "
-       local inpkg="$BASE_PKGS ${LOGIN_PKGS[$LOGIN_TYPE]} $PACKAGES $USER_PKGS "
+       local inpkg="$PACKAGES $USER_PKGS $AL_BASE_PKGS "
 
-       # add extra packages chosen throughout the install
-       if [[ $MYSHELL == '/usr/bin/zsh' ]]; then
+       if [[ $MYSHELL == 'zsh' ]]; then
                inpkg+="zsh-completions "
        else
                rmpkg+="zsh "
-               [[ $MYSHELL == '/usr/bin/mksh' ]] && inpkg+="mksh "
        fi
 
-       # using a different kernel, remove the stock one
-       if [[ $KERNEL != 'linux' ]]; then
-               inpkg+="$KERNEL "
-               rmpkg+="linux "
+       if [[ $INSTALL_WMS == 'dwm' ]]; then # dwm only needs a very limited package set
+               inpkg+="nitrogen polkit-gnome gnome-keyring dunst "
+       else
+               [[ $INSTALL_WMS =~ (plasma|gnome|cinnamon) ]] || inpkg+="archlabs-ksuperkey "
+               [[ $INSTALL_WMS =~ (openbox|bspwm|i3-gaps|fluxbox) ]] && inpkg+="$WM_BASE_PKGS "
+               [[ $inpkg =~ (term|plasma|rxvt|tilda|tilix|sakura) || $INSTALL_WMS =~ (gnome|plasma|xfce4) ]] || inpkg+="xterm "
        fi
 
-       # gnome, plasma, and cinnamon have their own superkey bind and ksuperkey conflicts
-       [[ $INSTALL_WMS =~ ^(plasma|gnome|cinnamon)$ ]] || inpkg+="archlabs-ksuperkey "
-
-       # window manager only packages
-       [[ $INSTALL_WMS =~ (openbox|bspwm|i3-gaps|dwm|fluxbox) ]] && inpkg+="$WM_BASE_PKGS "
-
-       # ensure a terminal gets installed if one wasn't chosen or a DE that installs one
-       [[ $inpkg =~ (term|urxvt|tilix|alacritty|sakura|tilda|plasma|cinnamon) || $INSTALL_WMS == *dwm* ]] || inpkg+="xterm "
-
-       # update first to avoid issues
-       chrun "pacman -Syyu --noconfirm"
+       # update and install crucial packages first to avoid issues
+       chrun "pacman -Syyu $KERNEL $BASE_PKGS ${LOGIN_PKGS[$LOGIN_TYPE]} $MYSHELL --noconfirm --needed" 2>$ERR
+       errshow 1 "pacman -Syyu $KERNEL $BASE_PKGS ${LOGIN_PKGS[$LOGIN_TYPE]} $MYSHELL --noconfirm --needed"
 
        # remove the packages we don't want on the installed system
-       [[ $rmpkg ]] && chrun "pacman -Rnsc $rmpkg --noconfirm"
+       chrun "pacman -Rnsc $rmpkg --noconfirm"
 
        # reinstalling iputils fixes the network issue for non-root users
        chrun "pacman -S iputils $UCODE --noconfirm"
@@ -1651,33 +1474,9 @@ install_packages()
        return 0
 }
 
-install_suckless()
-{
-       mkdir -pv "$MNT/home/$NEWUSER/suckless"
-
-       for i in dwm dmenu st; do
-               if chrun "git clone https://git.suckless.org/$i /home/$NEWUSER/suckless/$i"; then
-                       chrun "cd /home/$NEWUSER/suckless/$i; make PREFIX=/usr install; make clean; rm config.h"
-               else
-                       printf "failed to clone %s repo\n" "$i"
-               fi
-       done
-
-       if [[ -x $MNT/usr/bin/dwm ]]; then
-               printf "To configure dwm edit %s\n" "/home/$NEWUSER/suckless/dwm/config.h"
-               printf "You can then recompile it with 'sudo make clean install'\n"
-               sleep 2
-       fi
-}
-
 install_mkinitcpio()
 {
        local add=''
-
-       # luks keyfile creation
-       # currently not used due to not prompting for passphrase on startup
-       # [[ $LUKS_UUID && $LUKS_PASS && $SYS == 'UEFI' && $BOOTLDR == 'grub' ]] && luks_keyfile
-
        [[ $LUKS ]] && add="encrypt"
        [[ $LVM ]] && { [[ $add ]] && add+=" lvm2" || add+="lvm2"; }
        sed -i "s/block filesystems/block ${add} filesystems ${HOOKS}/g" $MNT/etc/mkinitcpio.conf
@@ -1687,10 +1486,8 @@ install_mkinitcpio()
 
 install_mirrorlist()
 {
-       local mfile="$1"  # output mirrorlist file
-
        if hash reflector >/dev/null 2>&1; then
-               reflector --verbose --score 80 -l 40 -f 5 --sort rate --save "$mfile"
+               reflector --verbose --score 80 -l 40 -f 5 --sort rate --save "$1"
        elif hash rankmirrors >/dev/null 2>&1; then
                echo "Sorting mirrorlist"
                local key="access_key=5f29642060ab983b31fdf4c2935d8c56"
@@ -1709,7 +1506,7 @@ install_mirrorlist()
                else # no country code so just grab all mirrors, will be a very slow sort but we don't have other options
                        mirror="https://www.archlinux.org/mirrorlist/?country=all&use_mirror_status=on"
                fi
-               curl -fsSL "$mirror" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 6 - >"$mfile"
+               curl -fsSL "$mirror" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 6 - >"$1"
        fi
 
        return 0
@@ -1717,13 +1514,42 @@ install_mirrorlist()
 
 install_background()
 {
-       msg "Background Install" "\nInstall will now begin in the background?\n" 2
-       rsync -a /run/archiso/sfs/airootfs/ $MNT/ &
-       RSYNC_PID=$!
-       ( install_mirrorlist "$MNT/etc/pacman.d/mirrorlist" >>/tmp/bg_out 2>&1 ) &
-       MIRROR_PID=$!
-       # end the background processes before exiting
-       trap "kill $RSYNC_PID $MIRROR_PID 2>/dev/null" EXIT
+       ( rsync -a /run/archiso/sfs/airootfs/ $MNT/ && install_mirrorlist "$MNT/etc/pacman.d/mirrorlist" >/dev/null 2>&1 ) &
+       BG_PID=$!
+       trap "kill $BG_PID 2>/dev/null" EXIT
+}
+
+###############################################################################
+# display manager config
+# these are called based on which DM is chosen after it is installed
+# additional config can be  handled here, for now only lightdm has one
+
+lightdm_config()
+{
+       cat > $MNT/etc/lightdm/lightdm-gtk-greeter.conf <<- EOF
+       [greeter]
+       default-user-image=/usr/share/icons/ArchLabs-Dark/64x64/places/distributor-logo-archlabs.png
+       background=/usr/share/backgrounds/archlabs/archlabs.jpg
+       theme-name=Adwaita-dark
+       icon-theme-name=Adwaita
+       font-name=DejaVu Sans Mono 11
+       position=30%,end 50%,end
+       EOF
+}
+
+ly_config()
+{
+       :
+}
+
+gdm_config()
+{
+       :
+}
+
+sddm_config()
+{
+       :
 }
 
 ###############################################################################
@@ -1740,10 +1566,6 @@ setup_grub()
                [[ $BOOT_DEV ]] || { part_device 1 || return 1; }
                BCMDS[grub]="grub-install --recheck --force --target=i386-pc $BOOT_DEV"
        else
-               # since we're not using the keyfile this is dead code
-               # if [[ $ROOT_PART == */dev/mapper/* && -z $LVM && -z $LUKS_PASS ]]; then
-               #       luks_pass "$_luksopen" 1 || return 1
-               # fi
                BCMDS[grub]="mount -t efivarfs efivarfs /sys/firmware/efi/efivars >/dev/null 2>&1
                grub-install --recheck --force --target=x86_64-efi --efi-directory=/$BOOTDIR --bootloader-id=$DIST"
                grep -q /sys/firmware/efi/efivars /proc/mounts || mount -t efivarfs efivarfs /sys/firmware/efi/efivars >/dev/null 2>&1
@@ -1807,36 +1629,17 @@ setup_syslinux()
 prerun_syslinux()
 {
        local c="$MNT/boot/syslinux" s="/usr/lib/syslinux/bios" d=".."
-       [[ $SYS == 'UEFI' ]] && { c="$MNT/boot/EFI/syslinux"; s="/usr/lib/syslinux/efi64/"; d=''; }
+       [[ $SYS == 'UEFI' ]] && { c="$MNT/boot/EFI/syslinux"; s="/usr/lib/syslinux/efi64"; d=''; }
 
-       mkdir -pv "$c" && cp -rfv $s/* "$c/" && cp -f "$RUN/syslinux/splash.png" "$c/"
+       mkdir -pv "$c"
+       cp -rfv "$s/"* "$c/"
        cat > "$c/syslinux.cfg" <<- EOF
-       UI vesamenu.c32
+       UI menu.c32
+       PROMPT 0
        MENU TITLE $DIST Boot Menu
-       MENU BACKGROUND splash.png
        TIMEOUT 50
        DEFAULT $DIST
 
-       # see: https://www.syslinux.org/wiki/index.php/Comboot/menu.c32
-       MENU WIDTH 78
-       MENU MARGIN 4
-       MENU ROWS 4
-       MENU VSHIFT 10
-       MENU TIMEOUTROW 13
-       MENU TABMSGROW 14
-       MENU CMDLINEROW 14
-       MENU HELPMSGROW 16
-       MENU HELPMSGENDROW 29
-       MENU COLOR border       30;44   #40ffffff #a0000000 std
-       MENU COLOR title        1;36;44 #9033ccff #a0000000 std
-       MENU COLOR sel          7;37;40 #e0ffffff #20ffffff all
-       MENU COLOR unsel        37;44   #50ffffff #a0000000 std
-       MENU COLOR help         37;40   #c0ffffff #a0000000 std
-       MENU COLOR timeout_msg  37;40   #80ffffff #00000000 std
-       MENU COLOR timeout      1;37;40 #c0ffffff #00000000 std
-       MENU COLOR msg07        37;40   #90ffffff #a0000000 std
-       MENU COLOR tabmsg       31;40   #30ffffff #00000000 std
-
        LABEL $DIST
        MENU LABEL $DIST Linux
        LINUX $d/vmlinuz-$KERNEL
@@ -1855,8 +1658,7 @@ prerun_syslinux()
 setup_refind-efi()
 {
        EDIT_FILES[bootloader]="/boot/refind_linux.conf"
-       BCMDS[refind-efi]="mount -t efivarfs efivarfs /sys/firmware/efi/efivars >/dev/null 2>&1
-               refind-install"
+       BCMDS[refind-efi]="mount -t efivarfs efivarfs /sys/firmware/efi/efivars >/dev/null 2>&1; refind-install"
 }
 
 prerun_refind-efi()
@@ -1886,8 +1688,7 @@ prerun_refind-efi()
 setup_systemd-boot()
 {
        EDIT_FILES[bootloader]="/boot/loader/entries/$DIST.conf"
-       BCMDS[systemd-boot]="mount -t efivarfs efivarfs /sys/firmware/efi/efivars >/dev/null 2>&1
-               bootctl --path=/boot install"
+       BCMDS[systemd-boot]="mount -t efivarfs efivarfs /sys/firmware/efi/efivars >/dev/null 2>&1; bootctl --path=/boot install"
 }
 
 prerun_systemd-boot()
@@ -1932,20 +1733,22 @@ prerun_systemd-boot()
 lvm_menu()
 {
        msg "Info" "\nGathering device info.\n" 0
-       is_bg_install || return 1
+       no_bg_install || return 1
        lvm_detect
        local choice
-       dlg choice menu "Logical Volume Management" "$_lvmmenu" \
-               "$_lvmnew"    "vgcreate -f, lvcreate -L -n" \
-               "$_lvmdel"    "vgremove -f" \
-               "$_lvmdelall" "lvrmeove, vgremove, pvremove -f" \
-               "back"        "return to the main menu"
-
-       case "$choice" in
-               "$_lvmnew") lvm_create || return 1 ;;
-               "$_lvmdel") lvm_delgroup && yesno "$_lvmdel" "$_lvmdelask" && vgremove -f "$DEL_VG" >/dev/null 2>&1 ;;
-               "$_lvmdelall") lvm_del_all ;;
-       esac
+       while :; do
+               dlg choice menu "Logical Volume Management" "$_lvmmenu" \
+                       "$_lvmnew"    "vgcreate -f, lvcreate -L -n" \
+                       "$_lvmdel"    "vgremove -f" \
+                       "$_lvmdelall" "lvrmeove, vgremove, pvremove -f" \
+                       "Back"        "Return to the main menu"
+               case "$choice" in
+                       "$_lvmnew") lvm_create && break ;;
+                       "$_lvmdel") lvm_delgroup && yesno "$_lvmdel" "$_lvmdelask" && vgremove -f "$DEL_VG" >/dev/null 2>&1 ;;
+                       "$_lvmdelall") lvm_del_all ;;
+                       *) break ;;
+               esac
+       done
 
        return 0
 }
@@ -1958,7 +1761,7 @@ lvm_detect()
        VGROUP="$(vgs -o vg_name --noheading 2>/dev/null)"
 
        if [[ $VGROUP && $v && $pv ]]; then
-               msg "Logical Volume Management" "\nActivating existing logical volume management (LVM).\n\n" 1
+               msg "LVM Setup" "\nActivating existing logical volume management.\n" 0
                modprobe dm-mod >/dev/null 2>$ERR
                errshow 'modprobe dm-mod'
                vgscan >/dev/null 2>&1
@@ -1972,10 +1775,11 @@ lvm_create()
        umount_dir $MNT
        lvm_mkgroup || return 1
        local txt="\nThe last (or only) logical volume will automatically use all remaining space in the volume group."
-       dlg VOL_COUNT menu "$_lvmnew" "\nSelect the number of logical volumes (LVs) to create in: $VGROUP\n$txt" 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9
+       dlg VOL_COUNT menu "$_lvmnew" "\nSelect the number of logical volumes (LVs) to create in: $VGROUP\n$txt" 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -
        [[ $VOL_COUNT ]] || return 1
        lvm_extra_lvs || return 1
        lvm_volume_name "$_lvmlvname\nNOTE: This LV will use up all remaining space in the volume group (${VGROUP_MB}MB)" || return 1
+       msg "$_lvmnew (LV:$VOL_COUNT)" "\nCreating volume $VNAME from remaining space in $VGROUP\n" 0
        lvcreate -l +100%FREE "$VGROUP" -n "$VNAME" >/dev/null 2>$ERR
        errshow "lvcreate -l +100%FREE $VGROUP -n $VNAME" || return 1
        LVM='logical volume'; sleep 0.5
@@ -1984,7 +1788,7 @@ lvm_create()
        return 0
 }
 
-get_lv_size()
+lvm_lv_size()
 {
        local txt="${VGROUP}: ${SIZE}$SIZE_UNIT (${VGROUP_MB}MB remaining).$_lvmlvsize"
 
@@ -2031,10 +1835,10 @@ lvm_mkgroup()
        until [[ $named ]]; do
                lvm_partitions || return 1
                lvm_group_name || return 1
-               yesno "$_lvmnew" "\nConfirm creation of volume group: $VGROUP\n\nwith the following partition(s): $LVM_PARTS\n" && named=true
+               yesno "$_lvmnew" "\nCreate volume group: $VGROUP\n\nusing these partition(s): $LVM_PARTS\n" && named=true
        done
 
-       msg "$_lvmnew" "\nCreating group: $VGROUP (${SIZE}$SIZE_UNIT)\n" 0
+       msg "$_lvmnew" "\nCreating volume group: $VGROUP\n" 0
        vgcreate -f "$VGROUP" $LVM_PARTS >/dev/null 2>$ERR
        errshow "vgcreate -f $VGROUP $LVM_PARTS" || return 1
 
@@ -2047,8 +1851,7 @@ lvm_mkgroup()
                VGROUP_MB=$SIZE
        fi
 
-       msg "$_lvmnew" "\nVolume group: $VGROUP (${SIZE}$SIZE_UNIT) has been created\n"
-       return 0
+       msg "$_lvmnew" "\nVolume group $VGROUP (${SIZE}$SIZE_UNIT) successfully created\n"
 }
 
 lvm_del_all()
@@ -2079,6 +1882,7 @@ lvm_delgroup()
        for i in $(lvs --noheadings | awk '{print $2}' | uniq); do
                VOL_GROUP_LIST+="$i $(vgdisplay "$i" | awk '/VG Size/ {print $3$4}') "
        done
+
        [[ $VOL_GROUP_LIST ]] || { msg "No Groups" "\nNo volume groups found."; return 1; }
 
        dlg DEL_VG menu "Logical Volume Management" "\nSelect volume group to delete.\n\nAll logical volumes within will also be deleted." $VOL_GROUP_LIST
@@ -2088,7 +1892,8 @@ lvm_delgroup()
 lvm_extra_lvs()
 {
        while (( VOL_COUNT > 1 )); do
-               lvm_volume_name "$_lvmlvname" && get_lv_size || return 1
+               lvm_volume_name "$_lvmlvname" && lvm_lv_size || return 1
+               msg "$_lvmnew (LV:$VOL_COUNT)" "\nCreating a $VOLUME_SIZE volume $VNAME in $VGROUP\n" 0
                lvcreate -L "$VOLUME_SIZE" "$VGROUP" -n "$VNAME" >/dev/null 2>$ERR
                errshow "lvcreate -L $VOLUME_SIZE $VGROUP -n $VNAME" || return 1
                msg "$_lvmnew (LV:$VOL_COUNT)" "\nDone, logical volume (LV) $VNAME ($VOLUME_SIZE) has been created.\n"
@@ -2109,7 +1914,7 @@ lvm_group_name()
 {
        VGROUP=''
        until [[ $VGROUP ]]; do
-               dlg VGROUP input "$_lvmnew" "$_lvmvgname" "mygroup"
+               dlg VGROUP input "$_lvmnew" "$_lvmvgname" "lvgroup"
                if [[ -z $VGROUP ]]; then
                        return 1
                elif [[ ${VGROUP:0:1} == "/" || $VGROUP =~ \ |\' ]] || vgdisplay | grep -q "$VGROUP"; then
@@ -2124,7 +1929,7 @@ lvm_volume_name()
 {
        VNAME=''
        local txt="$1" default="mainvolume"
-       (( VOL_COUNT > 1 )) && default="extravolume$VOL_COUNT"
+       (( VOL_COUNT > 1 )) && default="extvolume$VOL_COUNT"
        until [[ $VNAME ]]; do
                dlg VNAME input "$_lvmnew (LV:$VOL_COUNT)" "\n$txt" "$default"
                if [[ -z $VNAME ]]; then
@@ -2143,12 +1948,12 @@ lvm_volume_name()
 luks_menu()
 {
        local choice
-       is_bg_install || return 1
+       no_bg_install || return 1
        dlg choice menu "LUKS Encryption" "$_luksmenu" \
                "$_luksnew"  "cryptsetup -q luksFormat" \
                "$_luksopen" "cryptsetup open --type luks" \
                "$_luksadv"  "cryptsetup -q -s -c luksFormat" \
-               "back"       "Return to the main menu"
+               "Back"       "Return to the main menu"
 
        case "$choice" in
                "$_luksnew") luks_basic || return 1 ;;
@@ -2184,49 +1989,26 @@ luks_open()
 luks_pass()
 {
        LUKS_PASS=''
-       local t="$1" op="$2" v='' p='' p2=''
+       local t="$1"
+       typeset -a ans=(cryptroot) # default name to start
 
        until [[ $LUKS_PASS ]]; do
-               i=0
                tput cnorm
-               if [[ $op ]]; then
-                       dialog --insecure --backtitle "$DIST Installer - $SYS - v$VER" --separator $'\n' --title " $t " \
-                               --mixedform "\nEnter the password to decrypt $ROOT_PART\n\nThis is needed to create a keyfile." 0 0 0 \
-                               "Password:"  1 1 '' 1 11 "$COLUMNS" 0 1 \
-                               "Password2:" 2 1 '' 2 12 "$COLUMNS" 0 1 2>"$ANS" || return 1
-
-               else
-                       dialog --insecure --backtitle "$DIST Installer - $SYS - v$VER" --separator $'\n' --title " $t " --mixedform "$_luksomenu" 0 0 0 \
-                               "Name:"      1 1 "${LUKS_NAME:-cryptroot}" 1  7 "$COLUMNS" 0 0 \
-                               "Password:"  2 1 ''                        2 11 "$COLUMNS" 0 1 \
-                               "Password2:" 3 1 ''                        3 12 "$COLUMNS" 0 1 2>"$ANS" || return 1
+               dialog --insecure --backtitle "$DIST Installer - $SYS - v$VER" --separator $'\n' --title " $t " --mixedform "$_luksomenu" 0 0 0 \
+                       "Name:"      1 1 "${ans[0]}" 1  7 "$COLUMNS" 0 0 \
+                       "Password:"  2 1 ''          2 11 "$COLUMNS" 0 1 \
+                       "Password2:" 3 1 ''          3 12 "$COLUMNS" 0 1 2>"$ANS" || return 1
 
-               fi
+               mapfile -t ans <"$ANS"
 
-               while read -r line; do
-                       if [[ $op ]]; then
-                               case $i in
-                                       0) p="$line" ;;
-                                       1) p2="$line" ;;
-                               esac
-                       else
-                               case $i in
-                                       0) n="$line" ;;
-                                       1) p="$line" ;;
-                                       2) p2="$line" ;;
-                               esac
-                       fi
-                       (( i++ ))
-               done < "$ANS"
-
-               if [[ -z $op && -z $n ]]; then
+               if [[ -z "${ans[0]}" ]]; then
                        msg "Name Empty" "\nEncrypted device name cannot be empty.\n\nPlease try again.\n" 2
-               elif [[ -z $p || "$p" != "$p2" ]]; then
-                       [[ $op ]] || LUKS_NAME="$n"
+               elif [[ -z "${ans[1]}" || "${ans[1]}" != "${ans[2]}" ]]; then
+                       LUKS_NAME="${ans[0]}"
                        msg "Password Mismatch" "\nThe passwords entered do not match.\n\nPlease try again.\n" 2
                else
-                       [[ $op ]] || LUKS_NAME="$n"
-                       LUKS_PASS="$p"
+                       LUKS_NAME="${ans[0]}"
+                       LUKS_PASS="${ans[1]}"
                fi
        done
 
@@ -2269,22 +2051,6 @@ luks_basic()
        return 0
 }
 
-luks_keyfile()
-{
-       if [[ ! -e $MNT/crypto_keyfile.bin ]]; then
-               # printf "Creating LUKS keyfile /crypto_keyfile.bin\n"
-               local n
-               n="$(lsblk -lno NAME,UUID,TYPE | awk "/$LUKS_UUID/"' && /part|crypt|lvm/ {print $1}')"
-               local mkkey="dd bs=512 count=8 if=/dev/urandom of=/crypto_keyfile.bin"
-               mkkey="$mkkey && chmod 000 /crypto_keyfile.bin"
-               mkkey="$mkkey && cryptsetup luksAddKey /dev/$n /crypto_keyfile.bin <<< '$LUKS_PASS'"
-               chrun "$mkkey"
-               sed -i 's/FILES=()/FILES=(\/crypto_keyfile.bin)/g' $MNT/etc/mkinitcpio.conf 2>$ERR
-       fi
-
-       return 0
-}
-
 luks_advanced()
 {
        if luks_setup; then
@@ -2309,28 +2075,23 @@ luks_advanced()
 
 ofn()
 {
-       # does $2 contain $1
        [[ "$2" == *"$1"* ]] && printf "on" || printf "off"
 }
 
 die()
 {
        # cleanup and exit the installer cleanly with exit code $1
-       # when ecode is 127 unmount /run/archiso/bootmnt and reboot
-       local ecode="$1"
+       local e="$1" # when e is 127 unmount /run/archiso/bootmnt and reboot
 
        trap - INT
        tput cnorm
-       if [[ -d $MNT ]] && command cd /; then
+       if [[ -d $MNT ]]; then
                umount_dir $MNT
-               if (( ecode == 127 )); then
-                       umount_dir /run/archiso/bootmnt
-                       sleep 0.5
-                       reboot -f
+               if (( e == 127 )); then
+                       umount_dir /run/archiso/bootmnt && sleep 0.5 && reboot -f
                fi
        fi
-       termcol
-       exit "$ecode"
+       exit $e
 }
 
 dlg()
@@ -2339,13 +2100,14 @@ dlg()
        local dlg_t="$2" # dialog type (menu, check, input)
        local title="$3" # dialog title
        local body="$4"  # dialog message
-       local n=0        # number of items to display
+       local n=0        # number of items to display for menu and check dialogs
 
        shift 4  # shift off args assigned above
 
-       # when passed a large amount of arguments (menu list) adjust menu height
-       (( ($# / 2) > SHL )) && n=$SHL
-       
+       # adjust n when passed a large list
+       local l=$((LINES - 20))
+       (( ($# / 2) > l )) && n=$l
+
        tput civis
        case "$dlg_t" in
                menu) dialog --backtitle "$DIST Installer - $SYS - v$VER" --title " $title " --menu "$body" 0 0 $n "$@" 2>"$ANS" || return 1 ;;
@@ -2380,6 +2142,89 @@ msg()
        fi
 }
 
+live()
+{
+       local e=0
+
+       if (( $# == 0 )); then
+               msg "No Session" "\nRunning live requires a session to use.\n\nExiting..\n" 2
+               clear
+               die 1
+       elif ! select_keymap; then
+               clear
+               die 0
+       elif ! net_connect; then
+               msg "Not Connected" "\nRunning live requires an active internet connection.\n\nExiting..\n" 2
+               die 1
+       else
+               clear
+               pacman -Syyu archlinux-keyring --needed --noconfirm || die 1
+               pacman -S $AL_BASE_PKGS xorg-xinit xorg-server --needed --noconfirm || die 1
+               for ses; do
+                       case "$ses" in
+                               dwm)
+                                       pacman -S git --needed --noconfirm || die 1
+                                       mkdir -pv /root/suckless
+                                       for i in dwm dmenu st; do
+                                               git clone https://git.suckless.org/$i /root/suckless/$i && cd /root/suckless/$i && make PREFIX=/usr install
+                                       done
+                                       ;;
+                               i3-gaps|oepnbox|fluxbox|bspwm|awesome)
+                                       pacman -S "$ses" $WM_BASE_PKGS ${WM_EXT[$ses]} xterm --needed --noconfirm || die 1
+                                       ;;
+                               gnome|plasma|cinnamon|xfce4)
+                                       pacman -S "$ses" ${WM_EXT[$ses]} xterm --needed --noconfirm || die 1
+                                       ;;
+                               *) echo "error: invalid session for -l, --live, see -h, --help"; die 1 ;;
+                       esac
+               done
+               pacman -Scc --noconfirm
+               rm -rf "/var/cache/pacman/pkg/"*
+               cp -rfT /etc/skel /root || die 1
+               sed -i "/exec/ c exec ${WM_SESSIONS[$ses]}" /root/.xinitrc
+               printf "\n%s has been set as the login session in ~/.xinitrc, to start the session simply run\n\n\tstartx\n\n" "${WM_SESSIONS[$ses]}"
+               die 0
+       fi
+}
+
+usage()
+{
+       cat <<-EOF
+       usage: $1 [-hdl] [session]
+
+       options:
+           -h, --help     print this message and exit
+           -l, --live     install and setup a live session
+           -d, --debug    enable xtrace and log output to $DBG
+
+       sessions:
+           i3-gaps  - A fork of i3wm with more features including gaps
+           openbox  - A lightweight, powerful, and highly configurable stacking wm
+           dwm      - A dynamic WM for X that manages windows in tiled, floating, or monocle layouts
+           awesome  - A customized Awesome WM session created by @elanapan
+           bspwm    - A tiling wm that represents windows as the leaves of a binary tree
+           fluxbox  - A lightweight and highly-configurable window manager
+           gnome    - A desktop environment that aims to be simple and easy to use
+           cinnamon - A desktop environment combining traditional desktop with modern effects
+           plasma   - A kde software project currently comprising a full desktop environment
+           xfce4    - A lightweight and modular desktop environment based on gtk+2/3
+
+       distro name:
+
+           set the DIST environment variable before launching the installer eg.
+
+                   DIST='MyDistro' $1
+
+       editor used:
+
+           set the EDITOR environment variable before launching the installer eg.
+
+                   EDITOR='nano' $1
+
+       EOF
+       exit 0
+}
+
 yesno()
 {
        local title="$1" body="$2" yes='Yes' no='No'
@@ -2407,12 +2252,6 @@ debug()
        DEBUG=true
 }
 
-sigint()
-{
-       printf "\n^C caught, cleaning up...\n"
-       die 1
-}
-
 termcol()
 {
        local colors=(
@@ -2443,29 +2282,19 @@ errshow()
 
        local fatal=0 err=""
        err="$(sed 's/[^[:print:]]//g; s/\[[0-9\;:]*\?m//g; s/==> //g; s/] ERROR:/]\nERROR:/g' "$ERR")"
+       [[ -z $err ]] && err="no error message was found"
 
        (( $1 == 1 )) && { fatal=1; shift; }
 
-       local txt="\nThe command exited abnormally:\n\n$1\n\n"
-
-       if [[ $err ]]; then
-               txt+="With the following message:\n\n$err\n\n"
-       else
-               txt+="With no error message:\n\n"
-       fi
-
-       if (( fatal )); then
-               txt+="Errors at this stage are fatal and the install cannot continue.\n"
-       else
-               txt+="Errors at this stage are non-fatal and can be either fixed or ignored depending on the error.\n"
-       fi
-       msg "Install Error" "$txt"
+       local txt="\nCommand: $1\n\n\n\nError: $err\n\n"
 
        if (( fatal )); then
+               msg "Install Error" "${txt}Errors at this stage are fatal, the install cannot continue.\n"
                [[ -r $DBG && $TERM == 'linux' ]] && less "$DBG"
                die 1
        fi
 
+       msg "Install Error" "${txt}Errors at this stage are non-fatal and may be fixed or ignored depending on the error.\n"
        return 1
 }
 
@@ -2493,14 +2322,18 @@ umount_dir()
 {
        mount | grep -q 'swap' && swapoff -a
        for dir; do
-               [[ -d $dir && "$(mount | grep "on $dir ")" ]] || continue
-               umount "$dir" 2>/dev/null || { sleep 0.5; umount -f "$dir" 2>/dev/null || umount -l "$dir"; }
+               if [[ -d $dir ]] && mount | grep -q "on $dir "; then
+                       if ! umount "$dir" 2>/dev/null; then
+                               sleep 0.5
+                               umount -f "$dir" 2>/dev/null || umount -l "$dir"
+                       fi
+               fi
        done
 }
 
 chk_connect()
 {
-       msg "Network Connect" "\nVerifying network connection\n" 1
+       msg "Network Connect" "\nVerifying network connection\n" 0
        curl -sIN --connect-timeout 5 'https://www.archlinux.org/' | sed '1q' | grep -q '200'
 }
 
@@ -2508,26 +2341,27 @@ net_connect()
 {
        if chk_connect; then
                return 0
-       else
-               if hash nmtui >/dev/null 2>&1; then
-                       tput civis
-                       if [[ $TERM == 'linux' ]]; then
-                               printf "%b" "\e]P1191919" "\e]P4191919"
-                               nmtui-connect
-                               printf "%b" "\e]P1D15355" "\e]P4255a9b"
-                       else
-                               nmtui-connect
-                       fi
-                       chk_connect
+       elif hash nmtui >/dev/null 2>&1; then
+               tput civis
+               if [[ $TERM == 'linux' ]]; then
+                       printf "%b" "\e]P1191919" "\e]P4191919"
+                       nmtui-connect
+                       printf "%b" "\e]P1D15355" "\e]P4255a9b"
                else
-                       return 1
+                       nmtui-connect
                fi
+               chk_connect
+       elif hash wifi-menu >dev/null 2>&1; then
+               wifi-menu
+               chk_connect
+       else
+               return 1
        fi
 }
 
-is_bg_install()
+no_bg_install()
 {
-       [[ $RSYNC_PID || $MIRROR_PID ]] || return 0
+       [[ $BG_PID ]] || return 0
        msg "Install Running" "\nA background install process is currently running.\n" 2
        return 1
 }
@@ -2557,8 +2391,9 @@ system_identify()
 {
        if [[ $VM ]]; then
                UCODE=''
-       elif grep -q 'AuthenticAMD' /proc/cpuinfo; then
-               UCODE="amd-ucode"
+       # amd-ucode is not needed it's provided by linux-firmware
+       # elif grep -q 'AuthenticAMD' /proc/cpuinfo; then
+       #       UCODE="amd-ucode"
        elif grep -q 'GenuineIntel' /proc/cpuinfo; then
                UCODE="intel-ucode"
        fi
@@ -2590,23 +2425,32 @@ if (( UID != 0 )); then
 elif ! grep -qwm 1 'lm' /proc/cpuinfo; then
        msg "Not x86_64 Architecture" "\nThis installer only supports x86_64 architectures.\n\nExiting..\n" 2
        die 1
-elif [[ $1 =~ (-d|--debug) ]]; then
-       debug
+else
+       case "$1" in
+               -d|--debug) debug ;;
+               -h|--help) usage "$0" ;;
+               -l|--live) shift; live "$@" ;;
+       esac
 fi
 
 # trap ^C to perform cleanup
-trap sigint INT
+trap 'printf "\n^C\n" && die 1' INT
 
 system_identify
 system_devices
 
-msg "Welcome to the $DIST Installer" "\nThis will help you get $DIST setup on your system.\nHaving previous GNU/Linux and shell experience will be an asset, however we try our best to keep things simple.\n\nIf you are unsure about an option, a default will be listed or\nthe first selected option will usually be the default (excluding language and timezone).\n\n\nMenu Navigation:\n\n - Select items with the arrow keys or the option number.\n - Use [Space] to toggle options and [Enter] to confirm.\n - Switch between buttons using [Tab] or the arrow keys.\n - Use [Page Up] and [Page Down] to jump whole pages\n - Press the highlighted key of an option to select it.\n"
+msg "Welcome to the $DIST Installer" "$_welcome"
+
+if ! select_keymap; then
+       clear; die 0
+elif ! net_connect; then
+       msg "Not Connected" "\nThis installer requires an active internet connection.\n\nExiting..\n" 2
+       die 1
+fi
 
-select_keymap || { clear; die 0; }
-net_connect || { msg "Not Connected" "\nThis installer requires an active internet connection.\n\nExiting..\n" 2; die 1; }
+FORMATTED=""
 
 while :; do
        main
 done
-
 # vim:fdm=marker:fmr={,}