From 5704b072a163c36c4ff92787fe3d2cd64d78c805 Mon Sep 17 00:00:00 2001 From: Thomas Cole Date: Tue, 6 Jul 2021 09:55:35 -0400 Subject: [PATCH] added first login config script --- archinstall.sh | 4 +--- firstboot.sh | 10 ++++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 firstboot.sh diff --git a/archinstall.sh b/archinstall.sh index 696eb46..63b1d2d 100755 --- a/archinstall.sh +++ b/archinstall.sh @@ -140,9 +140,7 @@ setup () { arch-chroot /mnt systemctl enable NetworkManager arch-chroot /mnt systemctl enable lightdm - arch-chroot /mnt xfconf-query -c xsettings -p /Net/ThemeName -s "Arc-Darker" - arch-chroot /mnt xfconf-query -c xsettings -p /Gtk/FontName -s "Noto Sans Regular" - + curl https://git.thomaspcole.com/thomascole/AALI/raw/branch/master/firstboot.sh > /mnt/home/clc/firstboot.sh } ###################################################################################### diff --git a/firstboot.sh b/firstboot.sh new file mode 100644 index 0000000..4bcb143 --- /dev/null +++ b/firstboot.sh @@ -0,0 +1,10 @@ +#!/bin/bash + + +xfconf-query -c xsettings -p /Net/ThemeName -s "Arc-Darker" +xfconf-query -c xsettings -p /Gtk/FontName -s "Noto Sans Regular" + + +##REMOVE AFTER RUN +#DISABLED FOR TESTING +#rm -- "$0" \ No newline at end of file