configs/arch-config/install.sh

15 lines
367 B
Bash
Raw Normal View History

2023-01-13 15:17:42 +01:00
#!/usr/bin/env bash
2020-10-12 07:15:20 +02:00
set -euo pipefail
#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
2021-01-29 17:07:33 +01:00
#make executable & launch arch-config.sh
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