Files
dotfiles-remastered/.local/share/scripts/pacman-browse-aur.sh
2021-06-01 20:22:44 +02:00

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