2023-01-13 15:17:42 +01:00
|
|
|
#!/usr/bin/env bash
|
2020-10-12 07:15:20 +02:00
|
|
|
set -euo pipefail
|
|
|
|
|
2023-05-21 15:51:52 +02:00
|
|
|
#DO NOT MAKE CHANGES TO THE INSTALL SCRIPT HERE. USE arch-config.sh IN ~/scripts FOR THAT
|
2020-04-10 13:13:26 +02:00
|
|
|
|
2020-03-04 14:12:37 +01:00
|
|
|
#change to home (does not show in terminal)
|
|
|
|
cd $HOME
|
|
|
|
|
2021-01-29 17:07:33 +01:00
|
|
|
echo Launching arch-config.sh
|
2020-04-10 13:10:46 +02:00
|
|
|
|
2021-01-29 17:07:33 +01:00
|
|
|
#make executable & launch arch-config.sh
|
2023-05-21 15:51:52 +02:00
|
|
|
chmod +x ~/configs/arch-config/scripts/arch-config.sh
|
|
|
|
bash ~/configs/arch-config/scripts/arch-config.sh
|
2020-11-17 21:21:54 +01:00
|
|
|
exit 0
|