#!/usr/bin/env sh PKG=$(pacman -Slq | fzf --preview 'pacman -Si {1}') if [ -n "$PKG" ]; then sudo pacman -S "$PKG" fi