|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
inf() {
|
|
|
|
echo -e "\e[1m♠ $@\e[0m"
|
|
|
|
}
|
|
|
|
|
|
|
|
err() {
|
|
|
|
echo -e "\e[1m\e[31m✗ $@\e[0m"
|
|
|
|
}
|
|
|
|
|
|
|
|
response=""
|
|
|
|
prompt() {
|
|
|
|
printf "\e[1m\e[33m$@ : \e[0m"
|
|
|
|
read response
|
|
|
|
}
|
|
|
|
|
|
|
|
clear
|
|
|
|
TZ="/usr/share/LMAO/XD"
|
|
|
|
while [[ ! -f $TZ ]]; do
|
|
|
|
prompt "Pick a time zone (Format: America/New_York , Europe/London, etc)"
|
|
|
|
PT="$response"
|
|
|
|
TZ="/usr/share/zoneinfo/${PT}"
|
|
|
|
done
|
|
|
|
|
|
|
|
ln -sf $TZ /etc/localtime
|
|
|
|
inf "Set TZ to ${TZ}"
|
|
|
|
inf "Syncing hardware offset"
|
|
|
|
hwclock --systohc
|
|
|
|
|
|
|
|
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
|
|
|
echo "LANG=en_US.UTF-8" > /etc/locale.conf
|
|
|
|
|
|
|
|
clear
|
|
|
|
prompt "Do you need more locales than just en_US? (y/N)"
|
|
|
|
MORE="$response"
|
|
|
|
|
|
|
|
if [[ "$MORE" == "y" || "$MORE" == "Y" ]]; then
|
|
|
|
prompt "Preferred editor"
|
|
|
|
PGRM="$response"
|
|
|
|
if [[ -x "$(command -v ${PGRM})" ]]; then
|
|
|
|
inf "Attempting to install ${PGRM}"
|
|
|
|
pacman -Sy ${PGRM} --noconfirm
|
|
|
|
fi
|
|
|
|
inf "When we open the file, please remove the leading # before any locales you need."
|
|
|
|
inf "Then, save and exit.\nPress enter."
|
|
|
|
read
|
|
|
|
${PGRM} /etc/locale.gen
|
|
|
|
fi
|
|
|
|
|
|
|
|
inf "Generating selected locales."
|
|
|
|
locale-gen
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
inf "en_US was set as system primary."
|
|
|
|
inf "After install, you can edit /etc/locale.conf to change the primary if desired."
|
|
|
|
inf "Press enter"
|
|
|
|
prompt ""
|
|
|
|
|
|
|
|
if [[ -f /keymap ]]; then
|
|
|
|
inf "You set a custom keymap. We're making that change to the new system, too."
|
|
|
|
KMP=$(cat /keymap)
|
|
|
|
rm /keymap
|
|
|
|
echo "KEYMAP=${KMP}" > /etc/vconsole.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
clear
|
|
|
|
prompt "System hostname"
|
|
|
|
HOSTNAME="$response"
|
|
|
|
echo ${HOSTNAME} > /etc/hostname
|
|
|
|
echo "127.0.0.1 localhost" > /etc/hosts
|
|
|
|
prompt "Would you like IPV6? (y/N)"
|
|
|
|
IPS="$response"
|
|
|
|
if [[ "$IPS" == "y" || "$IPS" == "Y" ]]; then
|
|
|
|
echo "::1 localhost" >> /etc/hosts
|
|
|
|
fi
|
|
|
|
echo "127.0.1.1 ${HOSTNAME}.localdomain ${HOSTNAME}" >> /etc/hosts
|
|
|
|
|
|
|
|
clear
|
|
|
|
inf "Password for root"
|
|
|
|
passwd
|
|
|
|
|
|
|
|
prompt "Your username"
|
|
|
|
UN="$response"
|
|
|
|
useradd -m ${UN}
|
|
|
|
usermod -aG wheel ${UN}
|
|
|
|
inf "Set password for ${UN}"
|
|
|
|
passwd ${UN}
|
|
|
|
echo >> /etc/sudoers
|
|
|
|
echo "# Enabled by Crystalinstall" >> /etc/sudoers
|
|
|
|
echo "%wheel ALL=(ALL) ALL" >> /etc/sudoers
|
|
|
|
|
|
|
|
if [[ -f /efimode ]]; then
|
|
|
|
rm /efimode
|
|
|
|
grub-install --target=x86_64-efi --efi-directory=/efi --bootloader-id=CrystalUX
|
|
|
|
else
|
|
|
|
DISK=$(cat /diskn)
|
|
|
|
rm /diskn
|
|
|
|
grub-install ${DISK}
|
|
|
|
fi
|
|
|
|
|
|
|
|
grub-mkconfig -o /boot/grub/grub.cfg
|
|
|
|
|
|
|
|
systemctl enable NetworkManager
|
|
|
|
|
|
|
|
pacman-key --init
|
|
|
|
pacman-key --populate archlinux
|
|
|
|
|
|
|
|
|
|
|
|
clear
|
|
|
|
prompt "Would you like to install a DE/WM profile? (y/N)"
|
|
|
|
DEP="$response"
|
|
|
|
|
|
|
|
if [[ "$DEP" == "y" || "$DEP" == "Y" ]]; then
|
|
|
|
inf "--- Desktop Environments ---"
|
|
|
|
inf "- Budgie"
|
|
|
|
inf "- Cinnamon"
|
|
|
|
inf "- Deepin"
|
|
|
|
inf "- Enlightenment (note: very DIY. Read Arch Wiki)"
|
|
|
|
inf "- GNOME"
|
|
|
|
inf "- (GNOME) Flashback"
|
|
|
|
inf "- KDE"
|
|
|
|
inf "- LXDE"
|
|
|
|
inf "- LXQt"
|
|
|
|
inf "- Mate"
|
|
|
|
inf "- UKUI (note: very poorly documented. In english, anyway)"
|
|
|
|
inf "- Xfce"
|
|
|
|
inf "--- Window Managers ---"
|
|
|
|
inf "- i3"
|
|
|
|
inf "(We'll add more as people ask)"
|
|
|
|
inf "Please enter exactly as shown."
|
|
|
|
prompt ""
|
|
|
|
DE="$response"
|
|
|
|
DM=""
|
|
|
|
if [[ "$DE" == "Budgie" ]]; then
|
|
|
|
pacman -Sy --noconfirm budgie-desktop gnome
|
|
|
|
DM="gdm"
|
|
|
|
elif [[ "$DE" == "Cinnamon" ]]; then
|
|
|
|
pacman -Sy --noconfirm cinnamon
|
|
|
|
DM="gdm"
|
|
|
|
elif [[ "$DE" == "Deepin" ]]; then
|
|
|
|
pacman -Sy --noconfirm deepin deepin-extra
|
|
|
|
DM="lightdm"
|
|
|
|
elif [[ "$DE" == "Enlightenment" ]]; then
|
|
|
|
pacman -Sy --noconfirm enlightenment terminology
|
|
|
|
elif [[ "$DE" == "GNOME" ]]; then
|
|
|
|
pacman -Sy --noconfirm gnome gnome-extra chrome-gnome-shell
|
|
|
|
DM="gdm"
|
|
|
|
elif [[ "$DE" == "Flashback" || "$DE" == "GNOME Flashback" || "$DE" == "(GNOME) Flashback" ]]; then
|
|
|
|
DE="Flashback"
|
|
|
|
pacman -Sy --noconfirm gnome-flashback gnome-backgrounds gnome-control-center network-manger-applet gnoem-applets sensors-applet
|
|
|
|
DM="gdm"
|
|
|
|
elif [[ "$DE" == "KDE" ]]; then
|
|
|
|
pacman -Sy --noconfirm plasma kde-applications sddm
|
|
|
|
DM="sddm"
|
|
|
|
elif [[ "$DE" == "LXDE" ]]; then
|
|
|
|
pacman -Sy --noconfirm lxde
|
|
|
|
DM="lxdm"
|
|
|
|
elif [[ "$DE" == "LXQt" ]]; then
|
|
|
|
pacman -Sy --noconfirm lxqt breeze-icons xorg
|
|
|
|
DM="sddm"
|
|
|
|
elif [[ "$DE" == "Mate" ]]; then
|
|
|
|
pacman -Sy --noconfirm mate mate-extra mate-applet-dock mate-applet-streamer
|
|
|
|
DM="gdm"
|
|
|
|
elif [[ "$DE" == "UKUI" ]]; then
|
|
|
|
pacman -Sy --noconfirm ukui
|
|
|
|
elif [[ "$DE" == "Xfce" ]]; then
|
|
|
|
pacman -Sy --noconfirm xfce4 xfce4-goodies
|
|
|
|
DM="sddm"
|
|
|
|
# Start WM's
|
|
|
|
elif [[ "$DE" == "i3" ]]; then
|
|
|
|
inf "Choose either i3 or i3-gaps in below prompt. Rest of group is your preference"
|
|
|
|
inf "Press enter"
|
|
|
|
prompt ""
|
|
|
|
pacman -Sy i3 xorg-xinit xorg-server
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$DM" == "" ]]; then
|
|
|
|
inf "Your selected DE/WM doesn't have a standard display manager. Enter one of the below names, or leave blank for none"
|
|
|
|
inf "- gdm"
|
|
|
|
inf "- sddm"
|
|
|
|
inf "- lightdm (you'll need a greeter package. See Arch Wiki)"
|
|
|
|
inf "- (you can type another Arch package name if you have one in mind)"
|
|
|
|
inf "- [blank] for none"
|
|
|
|
prompt ""
|
|
|
|
ND="$response"
|
|
|
|
if [[ "$ND" != "" ]]; then
|
|
|
|
inf "Ok, we'll install $ND"
|
|
|
|
DM="$ND"
|
|
|
|
pacman -Sy --noconfirm $DM
|
|
|
|
else
|
|
|
|
inf "Ok, not installing a display manager."
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
pacman -Sy --noconfirm $DM
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$DM" != "" ]]; then
|
|
|
|
prompt "Would you like to enable ${DM} for ${DE}? (Y/n)"
|
|
|
|
useDM="$response"
|
|
|
|
if [[ "$useDM" != "n" ]]; then
|
|
|
|
systemctl enable ${DM}
|
|
|
|
if [[ "$DE" == "Deepin" ]]; then
|
|
|
|
sed -i 's/lightdm-gtk-greeter/lightdm-deepin-greeter/g' /etc/lightdm/lightdm.conf
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
prompt "Would you like to add more packages? (Y/n)"
|
|
|
|
MP="$response"
|
|
|
|
if [[ "$MP" != "n" ]]; then
|
|
|
|
prompt "Write package names"
|
|
|
|
PKGNS="$response"
|
|
|
|
pacman -Sy --noconfirm ${PKGNS}
|
|
|
|
fi
|
|
|
|
|
|
|
|
inf "Installation complete"
|