diff options
-rw-r--r-- | pacman.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -41,6 +41,18 @@ there and remove the .pacnew suffix) By itself, outputs all installed packages. +### Info + +Includes provided binaries/libraries, dependencies, installed size, etc. + + pacman -Qi <package> + + +Double info, includes more information, including packages that require (depend +on) this one: + + pacman -Sii <package> + ### Browsing installed packages with `fzf` pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)' |