mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 17:25:34 +00:00
10 lines
191 B
Bash
Executable File
10 lines
191 B
Bash
Executable File
#!/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)
|