diff --git a/docker/update.sh b/docker/update.sh deleted file mode 100755 index ce8b5cd..0000000 --- a/docker/update.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/zsh -for dir in */; do - cd $dir - docker-compose pull && docker-compose down && docker-compose up -d - cd .. -done diff --git a/home/.config/zsh/03-aliases.zsh b/home/.config/zsh/03-aliases.zsh index 66d4a55..90588cc 100644 --- a/home/.config/zsh/03-aliases.zsh +++ b/home/.config/zsh/03-aliases.zsh @@ -111,6 +111,7 @@ compdef _dotdrop-completion.zsh sdotdrop alias dotgit='git -C $DOTREPO' dotsync() { cd $DOTREPO && gpull && ga && gc && gpush && cd $OLDPWD } + # sync password manager passync() { pass git pull && pass git push && updatesecrets } @@ -121,8 +122,31 @@ plugupdate() { zinit update -p $HOME/.tmux/plugins/tpm/bin/update_plugins all } + update() { yay -Pw && yay } -updateall() { yay -Syu --devel firefox-nightly; plugupdate; sudo awman-update } + +{%@@ if profile == "Moria" @@%} +update-docker() { + for dir in $HOME/Git/dotfiles/docker/*; do + cd $dir + docker-compose pull + docker-compose up -d + cd .. + done +} + +update-all() { + update + plugupdate + update-docker +} +{%@@ else @@%} +updateall() { + yay -Pw + yay -Syu --devel firefox-nightly + plugupdate + sudo awman-update +} # remove unneeded packages autoremove() { sudo pacman -Rns $(pacman -Qdtq) }