configs/arch-config/install.sh

16 lines
359 B
Bash
Raw Normal View History

2020-03-04 14:12:37 +01:00
#!/bin/bash
2020-10-12 07:15:20 +02:00
set -euo pipefail
2020-09-09 20:56:53 +02:00
#DO NOT MAKE CHANGES TO THE INSTALL SCRIPT HERE. USE arcolinux-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
echo Launching arcolinux-config.sh
#make executable & launch arcolinux-config.sh
2020-04-18 23:34:34 +02:00
chmod +x ~/config/scripts/arcolinux-config.sh
2020-09-09 20:56:53 +02:00
bash ~/config/scripts/arcolinux-config.sh
2020-11-17 21:21:54 +01:00
exit 0