forked from ChrisTitusTech/ArchTitus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchfabian.sh
50 lines (46 loc) · 4.28 KB
/
archfabian.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
#github-action genshdoc
#
# @file ArchFabian
# @brief Entrance script that launches children scripts for each phase of installation.
# Find the name of the folder the scripts are in
set -a
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
SCRIPTS_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"/scripts
CONFIGS_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"/configs
set +a
echo -ne "
-------------------------------------------------------------------------
███████╗ █████╗ ██████╗ ██╗ █████╗ ███╗ ██╗ █████╗ ██████╗ ██████╗██╗ ██╗
██╔════╝██╔══██╗██╔══██╗██║██╔══██╗████╗ ██║██╔══██╗██╔══██╗██╔════╝██║ ██║
█████╗ ███████║██████╔╝██║███████║██╔██╗ ██║███████║██████╔╝██║ ███████║
██╔══╝ ██╔══██║██╔══██╗██║██╔══██║██║╚██╗██║██╔══██║██╔══██╗██║ ██╔══██║
██║ ██║ ██║██████╔╝██║██║ ██║██║ ╚████║██║ ██║██║ ██║╚██████╗██║ ██║
╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
-------------------------------------------------------------------------
Automated Arch Linux Installer
-------------------------------------------------------------------------
Scripts are in directory named ArchFabian
"
( bash $SCRIPT_DIR/scripts/startup.sh )|& tee startup.log
source $CONFIGS_DIR/setup.conf
( bash $SCRIPT_DIR/scripts/0-preinstall.sh )|& tee 0-preinstall.log
( arch-chroot /mnt $HOME/ArchFabian/scripts/1-setup.sh )|& tee 1-setup.log
if [[ ! $DESKTOP_ENV == server ]]; then
( arch-chroot /mnt /usr/bin/runuser -u $USERNAME -- /home/$USERNAME/ArchFabian/scripts/2-user.sh )|& tee 2-user.log
fi
( arch-chroot /mnt $HOME/ArchFabian/scripts/3-post-setup.sh )|& tee 3-post-setup.log
cp -v *.log /mnt/home/$USERNAME
echo -ne "
-------------------------------------------------------------------------
███████╗ █████╗ ██████╗ ██╗ █████╗ ███╗ ██╗ █████╗ ██████╗ ██████╗██╗ ██╗
██╔════╝██╔══██╗██╔══██╗██║██╔══██╗████╗ ██║██╔══██╗██╔══██╗██╔════╝██║ ██║
█████╗ ███████║██████╔╝██║███████║██╔██╗ ██║███████║██████╔╝██║ ███████║
██╔══╝ ██╔══██║██╔══██╗██║██╔══██║██║╚██╗██║██╔══██║██╔══██╗██║ ██╔══██║
██║ ██║ ██║██████╔╝██║██║ ██║██║ ╚████║██║ ██║██║ ██║╚██████╗██║ ██║
╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
-------------------------------------------------------------------------
Automated Arch Linux Installer
-------------------------------------------------------------------------
Done - Please Eject Install Media and Reboot
"