aboutsummaryrefslogtreecommitdiff
path: root/.oh-my-zsh/plugins/dnf
diff options
context:
space:
mode:
authorMarvin Borner2019-03-05 01:09:01 +0100
committerMarvin Borner2019-03-05 01:09:01 +0100
commit55457187d18221e76bd12f0fb2cfab65c49b92fb (patch)
tree8db042d2d80710d54100c2709ad4332153ac848a /.oh-my-zsh/plugins/dnf
Initial commit
Diffstat (limited to '.oh-my-zsh/plugins/dnf')
-rw-r--r--.oh-my-zsh/plugins/dnf/README.md25
-rw-r--r--.oh-my-zsh/plugins/dnf/dnf.plugin.zsh15
2 files changed, 40 insertions, 0 deletions
diff --git a/.oh-my-zsh/plugins/dnf/README.md b/.oh-my-zsh/plugins/dnf/README.md
new file mode 100644
index 0000000..f9ef496
--- /dev/null
+++ b/.oh-my-zsh/plugins/dnf/README.md
@@ -0,0 +1,25 @@
+## Description
+
+This plugin makes `dnf` usage easier by adding aliases for the most
+common commands.
+
+`dnf` is the new package manager for RPM-based distributions, which
+replaces `yum`.
+
+## Aliases
+
+| Alias | Command | Description |
+|-------|-------------------------|--------------------------|
+| dnfl | `dnf list` | List packages |
+| dnfli | `dnf list installed` | List installed packages |
+| dnfgl | `dnf grouplist` | List package groups |
+| dnfmc | `dnf makecache` | Generate metadata cache |
+| dnfp | `dnf info` | Show package information |
+| dnfs | `dnf search` | Search package |
+| **Use `sudo`** |
+| dnfu | `sudo dnf upgrade` | Upgrade package |
+| dnfi | `sudo dnf install` | Install package |
+| dnfgi | `sudo dnf groupinstall` | Install package group |
+| dnfr | `sudo dnf remove` | Remove package |
+| dnfgr | `sudo dnf groupremove` | Remove package group |
+| dnfc | `sudo dnf clean all` | Clean cache |
diff --git a/.oh-my-zsh/plugins/dnf/dnf.plugin.zsh b/.oh-my-zsh/plugins/dnf/dnf.plugin.zsh
new file mode 100644
index 0000000..653ce7d
--- /dev/null
+++ b/.oh-my-zsh/plugins/dnf/dnf.plugin.zsh
@@ -0,0 +1,15 @@
+## Aliases
+
+alias dnfl="dnf list" # List packages
+alias dnfli="dnf list installed" # List installed packages
+alias dnfgl="dnf grouplist" # List package groups
+alias dnfmc="dnf makecache" # Generate metadata cache
+alias dnfp="dnf info" # Show package information
+alias dnfs="dnf search" # Search package
+
+alias dnfu="sudo dnf upgrade" # Upgrade package
+alias dnfi="sudo dnf install" # Install package
+alias dnfgi="sudo dnf groupinstall" # Install package group
+alias dnfr="sudo dnf remove" # Remove package
+alias dnfgr="sudo dnf groupremove" # Remove package group
+alias dnfc="sudo dnf clean all" # Clean cache