dotfiles/bin/dotupdate
2020-05-26 15:27:37 +02:00

15 lines
242 B
Bash

#!/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