1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-06-21 16:48:35 +02:00
dotfiles/functions/pacman.zsh

Failed to ignore revisions in .git-blame-ignore-revs.

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
}