From 051eecccde080f97a39fddc7d3aba4a5864b53e5 Mon Sep 17 00:00:00 2001 From: elAgala Date: Fri, 24 Jan 2025 03:09:50 -0300 Subject: [PATCH] Minor fix: Run oh-my-zsh setup --unattended --- utils/install_zsh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/install_zsh.sh b/utils/install_zsh.sh index 946ef16..e6e14d5 100644 --- a/utils/install_zsh.sh +++ b/utils/install_zsh.sh @@ -9,6 +9,6 @@ function install_zsh() { sudo chsh -s /usr/bin/zsh "$username" echo "[ UTILS ]: Installing Oh My Zsh for $username" # Install Oh My Zsh - sudo -u "$username" sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" + sudo -u "$username" sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -) --unattended" echo "[ UTILS ]: Zsh and Oh My Zsh installed successfully and set as the default shell for $username" }