zsh install script

This commit is contained in:
Christian Colglazier 2022-08-27 19:02:54 -04:00
parent 19bd5c6dc8
commit 67be4e0b36

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Install and set zsh as the default shell.
# Import library
source $(dirname ${BASH_SOURCE[0]})/install-lib.sh
sudo $(packageManager) install zsh
chsh -s $(which zsh)