mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make ZSH the default shell environment
|
|
if [ `cat /etc/passwd | grep $USER | awk -F ':' '{print $7}'` != "/bin/zsh" ]; then
|
|
echo "Changing shell to zsh"
|
|
chsh -s $(which zsh)
|
|
fi
|
|
|
|
# linking base stuff
|
|
$HOME/.dotfiles/dotfiles.sh link base
|