Update
This commit is contained in:
parent
ed22dde744
commit
c417983266
10
tforgione.sh
10
tforgione.sh
|
@ -144,7 +144,7 @@ configure_zsh() {
|
|||
|
||||
if [ $sudo_available -eq 0 ]; then
|
||||
# Sudo is available, run chsh
|
||||
yes_no_ask "do you want to change your shell ? (you'll need root) ?"
|
||||
yes_no_ask "do you want to change your shell ?"
|
||||
if [ $? -eq 0 ]; then
|
||||
info "changing your shell"
|
||||
sudo chsh $user -s /bin/zsh
|
||||
|
@ -167,11 +167,13 @@ configure_zsh() {
|
|||
|
||||
main() {
|
||||
echo_green "=== WELCOME TO TFORGIONE'S CONFIG INSTALLER ==="
|
||||
|
||||
info "before anything, i need to know if your user can use sudo"
|
||||
yes_no_ask "can your user use sudo ?"
|
||||
sudo_available=$?
|
||||
|
||||
configure_zsh
|
||||
}
|
||||
|
||||
sudo -n -l true 2>&1
|
||||
sudo_available=$?
|
||||
|
||||
main < /dev/tty
|
||||
|
||||
|
|
Loading…
Reference in New Issue