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.
42 lines
1.5 KiB
Bash
42 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
GRAPHICAL="DISABLED"
|
|
|
|
echo "New system chroot running as $(whoami)"
|
|
printf "We're in the new system."
|
|
#read
|
|
|
|
# This file is run via mkarchiso while chrooted as the new system
|
|
echo "We're in the new system. :)"
|
|
echo "Performing minor tweaks"
|
|
sed -i 's/Arch Linux/CrystalUX/g' /etc/issue
|
|
sed -i 's/Arch Linux/CrystalUX/g' /etc/arch-release
|
|
sed -i 's/Arch Linux/CrystalUX/g' /etc/os-release
|
|
sed -i 's/Arch Linux/CrystalUX/g' /usr/lib/os-release
|
|
echo "CrystalLive" > /etc/hostname
|
|
#reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist
|
|
echo "sudo reflector --verbose --latest 5 --sort rate --save /etc/pacman.d/mirrorlist" >> /usr/bin/mirrorsetup
|
|
chmod +x /usr/bin/mirrorsetup
|
|
# We don't add crystal until here so that our packages which change
|
|
# /etc/skel have been installed already
|
|
useradd -m crystal
|
|
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) crystal
|
|
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) root
|
|
echo "menu" >> /home/crystal/.bashrc
|
|
if [[ -d /etc/crystal/bootopts ]]; then
|
|
chmod +x /etc/crystal/bootopts/*
|
|
fi
|
|
|
|
if [[ "$GRAPHICAL" == "DISABLED" ]]; then
|
|
echo "export XDG_SESSION_TYPE=x11" > /home/crystal/.xinitrc
|
|
echo "export GDK_BACKEND=x11" >> /home/crystal/.xinitrc
|
|
echo "exec gnome-session" >> /home/crystal/.xinitrc
|
|
chown crystal:crystal /home/crystal/.xinitrc
|
|
chmod +x /home/crystal/.xinitrc
|
|
fi
|
|
|
|
# i'm tired ok
|
|
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." |