diff options
author | nowshed-imran <now.im.627@gmail.com> | 2021-03-06 16:50:12 +0600 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-09-28 13:09:42 +0200 |
commit | a42db120856091257c7545473a20fbc3e295c633 (patch) | |
tree | e946c317034bac3548fd47a2a8b6f5e49630d44f /plugins/archlinux/archlinux.plugin.zsh | |
parent | 4ae5bdebc36068a53fbc38a4e0d6d97e49f5b56c (diff) | |
download | zsh-a42db120856091257c7545473a20fbc3e295c633.tar.gz zsh-a42db120856091257c7545473a20fbc3e295c633.tar.bz2 zsh-a42db120856091257c7545473a20fbc3e295c633.zip |
refactor(archlinux)!: remove `yaourt` support (#9713)
BREAKING CHANGE: `yaourt` is no longer maintained nor available as a package.
Use `pacman` or one of the other maintained AUR helpers.
Closes #9713
Diffstat (limited to 'plugins/archlinux/archlinux.plugin.zsh')
-rw-r--r-- | plugins/archlinux/archlinux.plugin.zsh | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/plugins/archlinux/archlinux.plugin.zsh b/plugins/archlinux/archlinux.plugin.zsh index c94fb8f6c..0c5782d98 100644 --- a/plugins/archlinux/archlinux.plugin.zsh +++ b/plugins/archlinux/archlinux.plugin.zsh @@ -104,7 +104,7 @@ if (( $+commands[aura] )); then alias auras='aura -As --both' alias auupd="sudo aura -Sy" alias auupg='sudo sh -c "aura -Syu && aura -Au"' - alias ausu='sudo sh -c "aura -Syu --no-confirm && aura -Au --no-confirm"' + alias ausu='sudo sh -c "aura -Syu --no-confirm && aura -Au --no-confirm"' alias upgrade='sudo aura -Syu' # extra bonus specially for aura @@ -153,26 +153,6 @@ if (( $+commands[trizen] )); then alias upgrade='trizen -Syu' fi -if (( $+commands[yaourt] )); then - alias yaconf='yaourt -C' - alias yaupg='yaourt -Syua' - alias yasu='yaourt -Syua --noconfirm' - alias yain='yaourt -S' - alias yains='yaourt -U' - alias yare='yaourt -R' - alias yarem='yaourt -Rns' - alias yarep='yaourt -Si' - alias yareps='yaourt -Ss' - alias yaloc='yaourt -Qi' - alias yalocs='yaourt -Qs' - alias yalst='yaourt -Qe' - alias yaorph='yaourt -Qtd' - alias yainsd='yaourt -S --asdeps' - alias yamir='yaourt -Syy' - alias yaupd="yaourt -Sy" - alias upgrade='yaourt -Syu' -fi - if (( $+commands[yay] )); then alias yaconf='yay -Pg' alias yaupg='yay -Syu' @@ -192,4 +172,3 @@ if (( $+commands[yay] )); then alias yaupd="yay -Sy" alias upgrade='yay -Syu' fi - |