dotfiles/bin/dotupdate
2020-05-27 09:57:02 +02:00

15 lines
242 B
Bash
Executable file

#!/bin/bash
dotupdate () {
pushd ~/.config/dotfiles &>/dev/null
echo "Updating Dotfiles"
git pull
popd &>/dev/null
pushd ~/.config/p10k &>/dev/null
echo "Updating P10K"
git pull
popd &>/dev/null
}
dotupdate