improved pacman browse

This commit is contained in:
Niklas 2020-06-17 22:21:04 +02:00
parent bc4be96cb1
commit b7ab82f695

View File

@ -1,2 +1,4 @@
#!/usr/bin/env bash
# requires: expac
comm -23 <(pacman -Qqe | sort) <({ pacman -Qqg base-devel; expac -l '\n' '%E' base; } | sort -u) | fzf --preview 'pacman -Qil {}' --bind 'enter:execute(pacman -Qil {} | less)'
exit 0