updated stuff
This commit is contained in:
parent
a7ce3c6270
commit
864d3ef4f4
3 changed files with 19 additions and 16 deletions
15
bin/dotupdate
Normal file
15
bin/dotupdate
Normal 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
|
|
@ -1,6 +1,6 @@
|
|||
Host *
|
||||
ServerAliveInterval 300
|
||||
ServerAliveCountMax 2
|
||||
|
||||
Host web
|
||||
ForwardX11 yes
|
||||
HostName megumi.eeleater.org
|
||||
|
||||
Host mail
|
||||
HostName mail.eeleater.org
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue