added pacman browse aur script

This commit is contained in:
Niklas 2021-06-01 20:22:44 +02:00
parent 0d901f25a2
commit 7c5689aa9f

View File

@ -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