73 lines
2.4 KiB
Bash
Executable File
73 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit immediately if a command exits with a non-zero status
|
|
set -eE
|
|
|
|
export PATH="$HOME/.local/share/omarchy/bin:$PATH"
|
|
OMARCHY_INSTALL=~/.local/share/omarchy/install
|
|
|
|
# Preparation
|
|
source $OMARCHY_INSTALL/preflight/show-env.sh
|
|
source $OMARCHY_INSTALL/preflight/trap-errors.sh
|
|
source $OMARCHY_INSTALL/preflight/guard.sh
|
|
source $OMARCHY_INSTALL/preflight/chroot.sh
|
|
source $OMARCHY_INSTALL/preflight/repositories.sh
|
|
source $OMARCHY_INSTALL/preflight/migrations.sh
|
|
source $OMARCHY_INSTALL/preflight/first-run-mode.sh
|
|
|
|
# Packaging
|
|
source $OMARCHY_INSTALL/packages.sh
|
|
source $OMARCHY_INSTALL/packaging/asdcontrol.sh
|
|
source $OMARCHY_INSTALL/packaging/fonts.sh
|
|
source $OMARCHY_INSTALL/packaging/lazyvim.sh
|
|
source $OMARCHY_INSTALL/packaging/webapps.sh
|
|
source $OMARCHY_INSTALL/packaging/tuis.sh
|
|
|
|
# Configuration
|
|
source $OMARCHY_INSTALL/config/config.sh
|
|
source $OMARCHY_INSTALL/config/theme.sh
|
|
source $OMARCHY_INSTALL/config/branding.sh
|
|
source $OMARCHY_INSTALL/config/git.sh
|
|
source $OMARCHY_INSTALL/config/gpg.sh
|
|
source $OMARCHY_INSTALL/config/timezones.sh
|
|
source $OMARCHY_INSTALL/config/increase-sudo-tries.sh
|
|
source $OMARCHY_INSTALL/config/increase-lockout-limit.sh
|
|
source $OMARCHY_INSTALL/config/ssh-flakiness.sh
|
|
source $OMARCHY_INSTALL/config/detect-keyboard-layout.sh
|
|
source $OMARCHY_INSTALL/config/xcompose.sh
|
|
source $OMARCHY_INSTALL/config/mise-ruby.sh
|
|
source $OMARCHY_INSTALL/config/docker.sh
|
|
source $OMARCHY_INSTALL/config/mimetypes.sh
|
|
source $OMARCHY_INSTALL/config/hardware/network.sh
|
|
source $OMARCHY_INSTALL/config/hardware/fix-fkeys.sh
|
|
source $OMARCHY_INSTALL/config/hardware/bluetooth.sh
|
|
source $OMARCHY_INSTALL/config/hardware/printer.sh
|
|
source $OMARCHY_INSTALL/config/hardware/usb-autosuspend.sh
|
|
source $OMARCHY_INSTALL/config/hardware/ignore-power-button.sh
|
|
source $OMARCHY_INSTALL/config/hardware/nvidia.sh
|
|
|
|
# Login
|
|
source $OMARCHY_INSTALL/login/plymouth.sh
|
|
source $OMARCHY_INSTALL/login/limine-snapper.sh
|
|
source $OMARCHY_INSTALL/login/alt-bootloaders.sh
|
|
|
|
# Updates
|
|
sudo updatedb
|
|
|
|
# Update system packages
|
|
sudo pacman -Syu --noconfirm
|
|
|
|
# Reboot
|
|
clear
|
|
tte -i ~/.local/share/omarchy/logo.txt --frame-rate 920 laseretch
|
|
echo
|
|
echo "You're done! So we're ready to reboot now..." | tte --frame-rate 640 wipe
|
|
|
|
if sudo test -f /etc/sudoers.d/99-omarchy-installer; then
|
|
sudo rm -f /etc/sudoers.d/99-omarchy-installer &>/dev/null
|
|
echo -e "\nRemember to remove USB installer!\n\n"
|
|
fi
|
|
|
|
sleep 5
|
|
reboot
|