From 359b51686d0f57289075d2b32e56f7ceb9d8b299 Mon Sep 17 00:00:00 2001 From: ArcExp <132262106+ArcExp@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:14:57 +0100 Subject: [PATCH] Update 2-user.sh --- scripts/2-user.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/2-user.sh b/scripts/2-user.sh index f534fc2..6bb30e6 100755 --- a/scripts/2-user.sh +++ b/scripts/2-user.sh @@ -13,12 +13,12 @@ echo -ne " ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ------------------------------------------------------------------------- Automated Arch Linux Installer - SCRIPTHOME: ArchTitus + SCRIPTHOME: Installer ------------------------------------------------------------------------- Installing AUR Softwares " -source $HOME/ArchTitus/configs/setup.conf +source $HOME/Installer/configs/setup.conf cd ~ mkdir "/home/$USERNAME/.cache" @@ -27,7 +27,7 @@ source $HOME/ArchTitus/configs/setup.conf git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k ln -s "~/zsh/.zshrc" ~/.zshrc -sed -n '/'$INSTALL_TYPE'/q;p' ~/ArchTitus/pkg-files/${DESKTOP_ENV}.txt | while read line +sed -n '/'$INSTALL_TYPE'/q;p' ~/Installer/pkg-files/${DESKTOP_ENV}.txt | while read line do if [[ ${line} == '--END OF MINIMAL INSTALL--' ]] then @@ -46,7 +46,7 @@ if [[ ! $AUR_HELPER == none ]]; then makepkg -si --noconfirm # sed $INSTALL_TYPE is using install type to check for MINIMAL installation, if it's true, stop # stop the script and move on, not installing any more packages below that line - sed -n '/'$INSTALL_TYPE'/q;p' ~/ArchTitus/pkg-files/aur-pkgs.txt | while read line + sed -n '/'$INSTALL_TYPE'/q;p' ~/Installer/pkg-files/aur-pkgs.txt | while read line do if [[ ${line} == '--END OF MINIMAL INSTALL--' ]]; then # If selected installation type is FULL, skip the --END OF THE MINIMAL INSTALLATION-- line @@ -62,9 +62,9 @@ export PATH=$PATH:~/.local/bin # Theming DE if user chose FULL installation if [[ $INSTALL_TYPE == "FULL" ]]; then if [[ $DESKTOP_ENV == "kde" ]]; then - cp -r ~/ArchTitus/configs/.config/* ~/.config/ + cp -r ~/Installer/configs/.config/* ~/.config/ pip install konsave - konsave -i ~/ArchTitus/configs/kde.knsv + konsave -i ~/Installer/configs/kde.knsv sleep 1 konsave -a kde fi