zsh: add pacman module

fix-ci
bretello 2023-09-15 00:32:28 +02:00
parent 51f92885fe
commit b96f0a6f86
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
if ! command -v pacman &>/dev/null; then return; fi
function pacpreview() {
if ! command -v fzf &>/dev/null; then
echo "Requires fzf! Quitting"
return 1
fi
pacman -Slq | fzf --multi --preview 'grc --colour=on pacman -Si {1}' | xargs -ro sudo pacman -S
}