You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
840 B
Bash
29 lines
840 B
Bash
#!/usr/bin/env bash
|
|
echo "Chrooted in the new system, running as $(whoami)"
|
|
|
|
# User setup
|
|
useradd -mG wheel crystal
|
|
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) crystal
|
|
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) root
|
|
chsh -s /usr/bin/zsh crystal
|
|
|
|
# Install Jade's GUI
|
|
flatpak install -y --noninteractive /usr/share/jade-gui/jade-gui.flatpak
|
|
|
|
# Desktop icon for Jade's GUI
|
|
mkdir -p /home/crystal/Desktop
|
|
cp /usr/share/applications/Jade.desktop /home/crystal/Desktop/Install.desktop
|
|
chown -R crystal:crystal /home/crystal/
|
|
|
|
# Services
|
|
systemctl enable NetworkManager
|
|
systemctl enable reflector
|
|
systemctl enable gdm
|
|
|
|
# Hostname and Locale
|
|
echo "crystal-live" > /etc/hostname
|
|
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
|
locale-gen
|
|
echo "LANG=en_US.UTF-8" > /etc/locale.conf
|
|
echo "Configured the system. Exiting chroot."
|