dotfiles/functions/pacman.zsh

10 lines
283 B
Bash
Raw Normal View History

2023-09-15 00:32:28 +02:00
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
}