49 lines
2.3 KiB
Bash
Executable File
49 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
echo -ne "
|
|
-------------------------------------------------------------------------
|
|
█████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
|
|
██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
|
|
███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
|
|
██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
|
|
██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
|
|
╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
|
-------------------------------------------------------------------------
|
|
Automated Arch Linux Installer
|
|
SCRIPTHOME: ArchTitus
|
|
-------------------------------------------------------------------------
|
|
|
|
Installing AUR Softwares
|
|
"
|
|
# You can solve users running this script as root with this and then doing the same for the next for statement. However I will leave this up to you.
|
|
source $HOME/ArchTitus/setup.conf
|
|
|
|
addAUR () {
|
|
cd ~
|
|
git clone "https://aur.archlinux.org/$1.git"
|
|
cd ~/$1
|
|
makepkg -si --noconfirm
|
|
cd ~
|
|
}
|
|
|
|
if [ "$AURHELPER" != "" ]; then
|
|
addAUR ${AURHELPER}
|
|
fi
|
|
|
|
touch "~/.cache/zshhistory"
|
|
git clone "https://github.com/ChrisTitusTech/zsh"
|
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
|
|
ln -s "~/zsh/.zshrc" ~/.zshrc
|
|
|
|
for PACKAGE in $(cat ~/ArchTitus/pkg-files/aur-pkgs.txt) do
|
|
addAUR $PACKAGE
|
|
esac
|
|
|
|
export PATH=$PATH:~/.local/bin
|
|
cp -r ~/ArchTitus/dotfiles/* ~/.config/
|
|
echo -ne "
|
|
-------------------------------------------------------------------------
|
|
SYSTEM READY FOR 3-post-setup.sh
|
|
-------------------------------------------------------------------------
|
|
"
|
|
exit
|