https://github.com/zeioth/paco
Aliases to make the most common pacman commands more intuitive.
https://github.com/zeioth/paco
Last synced: 10 months ago
JSON representation
Aliases to make the most common pacman commands more intuitive.
- Host: GitHub
- URL: https://github.com/zeioth/paco
- Owner: Zeioth
- Created: 2018-05-21T03:00:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-19T15:34:02.000Z (about 3 years ago)
- Last Synced: 2025-09-02T04:34:34.557Z (10 months ago)
- Language: Shell
- Homepage:
- Size: 63.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
How to use
---------------------
Copy the content of .bashrc at the end of your own ~/.bashrc
Aliases
---------------------
* **paco-install**: Install the packages and all its dependencies. Equivalent to 'pacman -S'
* **paco-rm**: Remove only the specified packages. Equivalent to 'pacman -Rdd'
* **paco-rmw**: Remove the packages with all its dependencies. Equivalent to 'pacman -Rs'
* **paco-autoremove**: Remove all orphan dependencies to free disk space. Equivalent to 'pacman -Rs $(pacman -Qqtd)'
* **paco-make**: Compile and install a directory with a PKGBUILD file. Equivalent to 'makepkg -sri'
* **paco-add-keys**: Mark the specified key as secure. Equivalent to 'gpg --recv-keys'
* **paco-unlockdb**: Unlock pacman's db. Equivalent to 'sudo rm /var/lib/pacman/db.lck'
* **paco-grub-update**: Regenerates intramfs, and update GRUB. Equivalent to 'sudo mkinitcpio -P && sudo grub-mkconfig -o /boot/grub/grub.cfg && sudo update-grub'
* **paco-update-mirrors**: Updates your mirrors with the best performing ones available. Equivalent to 'sudo pacman-mirrors --country all --api --protocols all --set-branch testing && sudo pacman -Sy'
* **paco-services-running**: List all running services. Equivalent to 'systemctl list-units --type=service --state=running'
* **paco-fix-zhistory**: Run the commands necessary to auto-repair the history file.
Cool features
---------------------
* All aliases support autocompletion.