From d7d32601628866cb5d3768c5c7d8ebb2dc0e8e8a Mon Sep 17 00:00:00 2001 From: funk-on-code <113871227+funk-on-code@users.noreply.github.com> Date: Wed, 21 Sep 2022 08:38:55 +0000 Subject: [PATCH] Update user creation to support desktops & servers. Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com> --- install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 5637d54..2d2863d 100755 --- a/install.sh +++ b/install.sh @@ -230,6 +230,11 @@ EOF # Setting username. read -r -p "Please enter name for a user account (leave empty to skip): " username +# If we have a username, ask for a full name too. +if [ ! -z "$username" ]; then +read -r -p "Please enter name the full name of the user account: " fullname +fi + # Setting up locales. read -r -p "Please insert the locale you use in this format (xx_XX): " locale echo "$locale.UTF-8 UTF-8" > /mnt/etc/locale.gen @@ -381,8 +386,7 @@ arch-chroot /mnt /bin/bash -e <