dotfiles/.install/shell.sh
Severin Kaderli b591b8de02
Update install scripts
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2021-01-25 21:56:08 +01:00

15 lines
297 B
Bash

#!/usr/bin/env bash
#
# SCRIPT NAME:
# shell.sh
#
# AUTHOR:
# Severin Kaderli <severin@kaderli.dev>
#
# DESCRIPTION:
# Sets default shell
output::section "Shell"
output::log "Setting default shell to zsh"
sudo chsh -s "/bin/zsh" "${USER}"
output::success "Successfully set default shell to zsh"