From 369d516c53858b127bd5987674419b89c4d705c7 Mon Sep 17 00:00:00 2001 From: funk-on-code <113871227+funk-on-code@users.noreply.github.com> Date: Thu, 22 Sep 2022 02:08:49 +0000 Subject: [PATCH] Add commentary for the user creation change. Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com> --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 2d2863d..27e2066 100755 --- a/install.sh +++ b/install.sh @@ -384,6 +384,7 @@ arch-chroot /mnt /bin/bash -e </dev/null # Adding user with sudo privilege + # (now suitable for desktop use on i3, KDE & GNOME) if [ -n "$username" ]; then echo "Adding $username with root privilege." useradd -g users -G wheel,sys,storage,power,network,audio,video,input -c "$fullname" -m "$username" @@ -406,6 +407,8 @@ Exec=aa-notify -p -s 1 -w 60 -f /var/log/audit/audit.log StartupNotify=false NoDisplay=true EOF + +# (we don't create a user group above any more, so this becomes 'users' rather than 'username'.) chmod 700 /mnt/home/${username}/.config/autostart/apparmor-notify.desktop arch-chroot /mnt chown -R $username:users /home/${username}/.config