dotfiles-remastered/.local/share/scripts/pacman-browse-aur.sh

5 lines
143 B
Bash
Executable File

#!/usr/bin/env bash
# requires: expac
pacman -Qqm | sort | fzf --preview 'pacman -Qil {}' --bind 'enter:execute(pacman -Qil {} | less)'
exit 0