From 728ac083a9ad3a51c7e00170594b5f93546da40c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petar=20Kapri=C5=A1?= Date: Sun, 20 Apr 2025 22:06:30 +0200 Subject: [PATCH] Replace zsh and dash with bash --- bs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bs.sh b/bs.sh index d141cb6..c3fa5e1 100644 --- a/bs.sh +++ b/bs.sh @@ -142,7 +142,7 @@ preinstallmsg() { adduserandpass() { # Adds user `$name` with password $pass1. whiptail --infobox "Adding user \"$name\"..." 7 50 - useradd -m -g wheel -s /bin/zsh "$name" >/dev/null 2>&1 || + useradd -m -g wheel -s /bin/bash "$name" >/dev/null 2>&1 || usermod -a -G wheel "$name" && mkdir -p /home/"$name" && chown "$name":wheel /home/"$name" export repodir="/home/$name/.local/src" mkdir -p "$repodir" @@ -231,7 +231,7 @@ refreshkeys || whiptail --title "LARBS Installation" \ --infobox "Installing software required to install and configure other programs." 8 70 -pacman --noconfirm --needed -S curl ca-certificates base-devel git ntp zsh dash +pacman --noconfirm --needed -S curl ca-certificates base-devel git ntp whiptail --title "LARBS Installation" \ --infobox "Synchronizing system time to ensure successful and secure installation of software..." 8 70