mirror of
https://github.com/danbee/mac-setup
synced 2025-03-04 08:39:10 +00:00
10 lines
187 B
Bash
Executable File
10 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SHELL_PATH=$(command -v zsh)
|
|
|
|
if ! grep "$SHELL_PATH" /etc/shells > /dev/null 2>&1 ; then
|
|
sudo sh -c "echo $SHELL_PATH >> /etc/shells"
|
|
fi
|
|
|
|
sudo chsh -s "$SHELL_PATH" "$USER"
|