updated stuff

This commit is contained in:
Nikolas Weger 2020-05-26 15:27:37 +02:00
parent a7ce3c6270
commit 864d3ef4f4
3 changed files with 19 additions and 16 deletions

15
bin/dotupdate Normal file
View file

@ -0,0 +1,15 @@
#!/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