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

View file

@ -1,6 +1,6 @@
Host *
ServerAliveInterval 300
ServerAliveCountMax 2
Host web
ForwardX11 yes
HostName megumi.eeleater.org
Host mail
HostName mail.eeleater.org

View file

@ -12,15 +12,3 @@ alias ff='find . -type f -name'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
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
}