install omz last

This commit is contained in:
David Todd 2020-03-25 13:54:55 -05:00
parent 9dc69b2e1c
commit 57ab4c0f64

View File

@ -68,10 +68,6 @@ fi
# Start installing config # Start installing config
echo "Installing Oh-My-ZSH"
echo "When the install is done, type `exit` to continue installing dotfiles"
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
echo "Creating Symlinks..." echo "Creating Symlinks..."
symlink $basedir/shell/zshrc $HOME/.zshrc symlink $basedir/shell/zshrc $HOME/.zshrc
symlink $basedir/shell/bashrc $HOME/.bashrc symlink $basedir/shell/bashrc $HOME/.bashrc
@ -93,9 +89,9 @@ cd $HOME/.vim/bundle
git clone git://github.com/tpope/vim-sensible.git git clone git://github.com/tpope/vim-sensible.git
echo "Adding user bin..." echo "Adding user bin..."
mkdir -p $bindir $basedir/.bin mkdir -p $bindir
for path in $basedir/bin/*; do for file_path in $basedir/bin/*; do
symlink $basedir/$path $bindir/$(basename $path) symlink $file_path $bindir/$(basename $file_path)
done done
echo "Changing default shell to ZSH..." echo "Changing default shell to ZSH..."
@ -113,7 +109,11 @@ symlink $basedir/i3/compton.conf $HOME/.compton.conf
symlink $basedir/i3/i3blocks $bindir/i3blocks symlink $basedir/i3/i3blocks $bindir/i3blocks
echo "Installing shell-history" echo "Installing shell-history"
python3.6 -m pip install shellhistory python3 -m pip install shellhistory
echo "Installing Oh-My-ZSH"
echo "When the install is done, type `exit` to continue installing dotfiles"
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
if [ -e "$postinst" ]; then if [ -e "$postinst" ]; then
echo "Running post install..." echo "Running post install..."