From 9fb25fdcb6d89ae4860ac0f225767873173d5b75 Mon Sep 17 00:00:00 2001 From: Kingproone <118820223+Kingproone@users.noreply.github.com> Date: Tue, 27 Jan 2026 22:13:56 +0100 Subject: [PATCH] Add alias for removing packages with yayr same as yayf, but in reverse, i have been using it for quite a while now, works like a charm https://github.com/Kingproone/dotfiles/blob/main/home/%24USER/.bashrc --- .bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.bashrc b/.bashrc index 7a09fa2..7a74f98 100644 --- a/.bashrc +++ b/.bashrc @@ -141,6 +141,7 @@ alias vi='nvim' alias svi='sudo vi' alias vis='nvim "+set si"' alias yayf="yay -Slq | fzf --multi --preview 'yay -Sii {1}' --preview-window=down:75% | xargs -ro yay -S" +alias yayr="yay -Qq | fzf --multi --preview 'yay -Qi {1}' --preview-window=down:75% | xargs -ro yay -Rns" # Change directory aliases alias home='cd ~'