dotfiles/tools/upgrade.sh

22 lines
568 B
Bash
Raw Normal View History

2022-07-04 16:06:23 +03:00
#!/bin/sh
# Dotfiles upgrade script that just pulls new dotfiles from repo
# oh-my-zsh update included!
CURRENTDIR="$(pwd)"
GREEN="\033[32m"
2022-07-05 08:15:27 +03:00
CLEAR_COLOR="\033[0m"
2022-07-04 16:06:23 +03:00
cd $HOME/.dotfiles
2022-07-05 08:15:27 +03:00
echo "1) ${GREEN}Upgrading dotfiles$CLEAR_COLOR"
2022-07-05 08:26:29 +03:00
if git pull > /dev/null 2>&1
then
echo "$HOME/.dotfiles synced"
else
echo "$HOME/.dotfiles couldn't be 'git pull'ed, check your connection to internet or run tools/reinstall.sh"
exit 1
2022-07-09 17:46:55 +03:00
fi
2022-07-04 16:06:23 +03:00
sh tools/relink.sh
2022-07-05 08:15:27 +03:00
echo "2) ${GREEN}Upgrading oh-my-zsh$CLEAR_COLOR"
2022-07-04 16:06:23 +03:00
zsh -c "source $ZSH/oh-my-zsh.sh && omz update" > /dev/null
cd $CURRENTDIR