m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pacman.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/pacman.md b/pacman.md
index 133adfd..98a11d8 100644
--- a/pacman.md
+++ b/pacman.md
@@ -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)'