36 lines
2.0 KiB
Bash
Executable File
36 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#-------------------------------------------------------------------------
|
|
# █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
|
|
# ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
|
|
# ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
|
|
# ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
|
|
# ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
|
|
# ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
|
#-------------------------------------------------------------------------
|
|
|
|
echo -e "\nINSTALLING AUR SOFTWARE\n"
|
|
# 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.
|
|
|
|
echo "CLONING: YAY"
|
|
cd ~
|
|
git clone "https://aur.archlinux.org/yay.git"
|
|
cd ${HOME}/yay
|
|
makepkg -si --noconfirm
|
|
cd ~
|
|
touch "$HOME/.cache/zshhistory"
|
|
git clone "https://github.com/ChrisTitusTech/zsh"
|
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $HOME/powerlevel10k
|
|
ln -s "$HOME/zsh/.zshrc" $HOME/.zshrc
|
|
|
|
yay -S --noconfirm --needed - < ${HOME}/ArchTitus/pkg-files/aur-pkgs.txt
|
|
|
|
export PATH=$PATH:~/.local/bin
|
|
cp -r $HOME/$SCRIPTHOME/dotfiles/* $HOME/.config/
|
|
pip install konsave
|
|
konsave -i $HOME/$SCRIPTHOME/kde.knsv
|
|
sleep 1
|
|
konsave -a kde
|
|
|
|
echo -e "\nDone!\n"
|
|
exit
|