diff --git a/.local/share/scripts/pacman-browse-aur.sh b/.local/share/scripts/pacman-browse-aur.sh new file mode 100755 index 0000000..fbb6d49 --- /dev/null +++ b/.local/share/scripts/pacman-browse-aur.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +# requires: expac +pacman -Qqm | sort | fzf --preview 'pacman -Qil {}' --bind 'enter:execute(pacman -Qil {} | less)' +exit 0