From 3c8b781a437e8f2b7721d2afcf4ccf714d382d83 Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 31 Mar 2022 01:16:32 +0100 Subject: added bash as user default shell --- scripts/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/install.sh b/scripts/install.sh index ee23109..3d28534 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,6 +1,6 @@ #!/bin/sh -default_packages="base linux xipkg dracut grub" +default_packages="base linux xipkg dracut grub bash" additional_packages="sudo neofetch vim networkmanager" default_key="davidovski https://xi.davidovski.xyz/keychain/xi.pub" @@ -38,7 +38,7 @@ configuring_users () { echo echo "Creating user" read -p "Enter username: " username - xichroot $SYSROOT useradd -m $username + xichroot $SYSROOT useradd -s /bin/bash -m $username xichroot $SYSROOT passwd $username } @@ -79,7 +79,7 @@ installing_bootloader () { [ "$r" != "n" ] && { opts="--target=x86_64-efi" - lsblk + xichroot $SYSROOT lsblk read -p "Enter efi directory: " efi_part opts="$opts --efi-directory=$efi_part" -- cgit v1.2.1