From 6d7a590685ee80c1cca828c4b582526981719680 Mon Sep 17 00:00:00 2001 From: Thomas Cole Date: Wed, 7 Jul 2021 20:42:27 -0400 Subject: [PATCH] moved .desktop to home --- archinstall.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/archinstall.sh b/archinstall.sh index a37d650..fbdebac 100755 --- a/archinstall.sh +++ b/archinstall.sh @@ -140,13 +140,11 @@ setup () { arch-chroot /mnt systemctl enable NetworkManager arch-chroot /mnt systemctl enable lightdm - mkdir -p /mnt/home/clc/.config/autostart - curl https://git.thomaspcole.com/thomascole/AALI/raw/branch/master/firstboot.sh > /mnt/home/clc/firstboot.sh - curl https://git.thomaspcole.com/thomascole/AALI/raw/branch/master/fb.desktop > /mnt/home/clc/.config/autostart/fb.desktop + curl https://git.thomaspcole.com/thomascole/AALI/raw/branch/master/fb.desktop > /mnt/home/clc/fb.desktop chmod +x /mnt/home/clc/firstboot.sh - chmod +x /mnt/home/clc/.config/autostart/fb.desktop + chmod +x /mnt/home/clc/fb.desktop return 1 }