Output improvement & XFCE or Budgie

artix
Matt C 3 years ago
parent 60c426a4cf
commit 835a8d7dee

@ -14,8 +14,8 @@ prompt() {
read response read response
} }
TZ="/usr/share/zoneinfo/FUCK/OFF" clear
TZ="/usr/share/LMAO/XD"
while [[ ! -f $TZ ]]; do while [[ ! -f $TZ ]]; do
prompt "Pick a time zone (Format: America/New_York , Europe/London, etc)" prompt "Pick a time zone (Format: America/New_York , Europe/London, etc)"
PT="$response" PT="$response"
@ -30,6 +30,7 @@ hwclock --systohc
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
echo "LANG=en_US.UTF-8" > /etc/locale.conf echo "LANG=en_US.UTF-8" > /etc/locale.conf
clear
prompt "Do you need more locales than just en_US? (y/N)" prompt "Do you need more locales than just en_US? (y/N)"
MORE="$response" MORE="$response"
@ -63,6 +64,7 @@ if [[ -f /keymap ]]; then
echo "KEYMAP=${KMP}" > /etc/vconsole.conf echo "KEYMAP=${KMP}" > /etc/vconsole.conf
fi fi
clear
prompt "System hostname" prompt "System hostname"
HOSTNAME="$response" HOSTNAME="$response"
echo ${HOSTNAME} > /etc/hostname echo ${HOSTNAME} > /etc/hostname
@ -74,6 +76,7 @@ if [[ "$IPS" == "y" || "$IPS" == "Y" ]]; then
fi fi
echo "127.0.1.1 ${HOSTNAME}.localdomain ${HOSTNAME}" >> /etc/hosts echo "127.0.1.1 ${HOSTNAME}.localdomain ${HOSTNAME}" >> /etc/hosts
clear
inf "Password for root" inf "Password for root"
passwd passwd
@ -103,14 +106,19 @@ systemctl enable NetworkManager
pacman-key --init pacman-key --init
pacman-key --populate archlinux pacman-key --populate archlinux
clear
prompt "Would you like to install a DE profile? (y/N)" prompt "Would you like to install a DE profile? (y/N)"
DEP="$response" DEP="$response"
if [[ "$DEP" == "y" || "$DEP" == "Y" ]]; then if [[ "$DEP" == "y" || "$DEP" == "Y" ]]; then
inf "- KDE" inf "- KDE"
inf "- GNOME" inf "- GNOME"
inf "- XFCE"
inf "- Budgie"
inf "- i3" inf "- i3"
inf "(We'll add more as people ask)" inf "(We'll add more as people ask)"
inf "Please enter exactly as shown."
prompt "" prompt ""
DE="$response" DE="$response"
@ -120,6 +128,12 @@ if [[ "$DEP" == "y" || "$DEP" == "Y" ]]; then
elif [[ "$DE" == "GNOME" ]]; then elif [[ "$DE" == "GNOME" ]]; then
pacman -Sy --noconfirm gnome gnome-extra pacman -Sy --noconfirm gnome gnome-extra
DM="gdm" DM="gdm"
elif [[ "$DE" == "XFCE" ]]; then
pacman -Sy --noconfirm xfce4 xfce4-goodies
DM="sddm"
elif [[ "$DE" == "Budgie" ]]; then
pacman -Sy --noconfirm budgie-desktop gnome
DM="gdm"
elif [[ "$DE" == "i3" ]]; then elif [[ "$DE" == "i3" ]]; then
inf "Choose either i3 or i3-gaps in below prompt. Rest of group is your preference (or not" inf "Choose either i3 or i3-gaps in below prompt. Rest of group is your preference (or not"
inf "Press enter" inf "Press enter"

@ -35,7 +35,9 @@ if [[ "$KBD" == "y" || "$KBD" == "Y" ]]; then
loadkeys ${KMP} loadkeys ${KMP}
fi fi
clear
inf "Disks:"
fdisk -l | grep Disk | grep sectors --color=never fdisk -l | grep Disk | grep sectors --color=never
prompt "Would you like to partition manually? (y/N)" prompt "Would you like to partition manually? (y/N)"
@ -129,6 +131,7 @@ if [[ "$MANUAL" == "no" ]]; then
fi fi
fi fi
else else
clear
inf "You have chosen manual partitioning." inf "You have chosen manual partitioning."
inf "We're going to drop to a shell for you to partition, but first, PLEASE READ these notes." inf "We're going to drop to a shell for you to partition, but first, PLEASE READ these notes."
inf "Before you exit the shell, make sure to format and mount a partition for / at /mnt" inf "Before you exit the shell, make sure to format and mount a partition for / at /mnt"

Loading…
Cancel
Save