From 4bd558fb695fca86ba7a3b50e3edac35187ca339 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Thu, 23 Apr 2026 01:27:56 -0600 Subject: [PATCH] gfixxasn installerrr --- customscripts/install_script.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/customscripts/install_script.sh b/customscripts/install_script.sh index dd3721f..18f009f 100644 --- a/customscripts/install_script.sh +++ b/customscripts/install_script.sh @@ -180,10 +180,11 @@ grep -q $finalDir $rcfile pathgrep=$? if [ $pathgrep -eq 0 ]; then echo -e "\n$finalDir Already in \$PATH Skipping Append\n" -else +fi +# else # echo -e "\nAdding $finalDir to $username's \$PATH by Appending to $rcfile\n" # echo -e "\n\n# automatically added by customscripts installer\nexport PATH=\"\$PATH:$finalDir\"" >> "$rcfile" -fi +# fi # install pishrink if not there if [ ! -f /usr/local/bin/pishrink ]; then @@ -207,16 +208,17 @@ if [ ! -d $userhome/.local/share/blesh ]; then # echo "source -- ~/.local/share/blesh/ble.sh" >> $rcfile # source $rcfile # exec "$SHELL" -else +fi +# else # echo -e "\nble.sh already installed, skippping\n" # source $rcfile -fi +# fi # appeend thefuck to rcfile if not present grep -q thefuck $rcfile thefuck_present=$? if [ $thefuck_present -ne 0 ]; then - # echo -e "\nthefuck alias not fonud in $rcfile, adding\n" + echo -e "\nthefuck alias not fonud in $rcfile, adding\n" # echo -e "# thefuck\neval \$(thefuck --alias fuck)" >> $rcfile # source $rcfile else