1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 12:20:27 +00:00
prezto/modules/pacman/init.zsh

85 lines
2.3 KiB
Bash
Raw Normal View History

2011-08-31 03:16:15 +00:00
#
2012-06-30 21:29:30 +00:00
# Defines Pacman aliases.
2012-02-01 04:37:51 +00:00
#
# Authors:
# Benjamin Boudreau <dreurmail@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Tips:
2011-08-31 03:16:15 +00:00
# https://wiki.archlinux.org/index.php/Pacman_Tips
2012-02-01 04:37:51 +00:00
#
2011-08-31 03:16:15 +00:00
2012-07-23 19:00:44 +00:00
# Return if requirements are not found.
if (( ! $+commands[pacman] )); then
return 1
fi
2012-08-04 18:48:32 +00:00
#
# Frontend
#
2012-06-30 21:29:30 +00:00
# Get the Pacman frontend.
zstyle -s ':prezto:module:pacman' frontend '_pacman_frontend'
2011-10-12 03:13:58 +00:00
2012-06-30 21:29:30 +00:00
if (( $+commands[$_pacman_frontend] )); then
alias pacman="$_pacman_frontend"
2011-10-12 03:13:58 +00:00
2012-06-30 21:29:30 +00:00
if [[ -s "${0:h}/${_pacman_frontend}.zsh" ]]; then
source "${0:h}/${_pacman_frontend}.zsh"
2011-08-31 03:16:15 +00:00
fi
else
_pacman_frontend='pacman'
_pacman_sudo='sudo '
2011-08-31 03:16:15 +00:00
fi
2012-08-04 18:48:32 +00:00
#
2012-07-03 17:58:32 +00:00
# Aliases
2012-08-04 18:48:32 +00:00
#
2012-07-03 17:58:32 +00:00
2012-08-15 11:59:25 +00:00
# Pacman.
2014-01-13 09:45:08 +00:00
alias pac="${_pacman_frontend}"
2012-08-15 11:59:25 +00:00
2012-06-30 21:29:30 +00:00
# Installs packages from repositories.
alias paci="${_pacman_sudo}${_pacman_frontend} --sync"
2011-10-12 03:13:58 +00:00
2012-06-30 21:29:30 +00:00
# Installs packages from files.
alias pacI="${_pacman_sudo}${_pacman_frontend} --upgrade"
2011-10-12 03:13:58 +00:00
2012-06-30 21:29:30 +00:00
# Removes packages and unneeded dependencies.
alias pacx="${_pacman_sudo}${_pacman_frontend} --remove"
2011-10-12 03:13:58 +00:00
2012-06-30 21:29:30 +00:00
# Removes packages, their configuration, and unneeded dependencies.
alias pacX="${_pacman_sudo}${_pacman_frontend} --remove --nosave --recursive"
2011-10-12 03:13:58 +00:00
2012-07-03 17:58:32 +00:00
# Displays information about a package from the repositories.
alias pacq="${_pacman_frontend} --sync --info"
2011-10-12 03:13:58 +00:00
2012-07-03 17:58:32 +00:00
# Displays information about a package from the local database.
alias pacQ="${_pacman_frontend} --query --info"
2011-08-31 03:16:15 +00:00
2012-06-30 21:29:30 +00:00
# Searches for packages in the repositories.
alias pacs="${_pacman_frontend} --sync --search"
2011-08-31 03:16:15 +00:00
2012-06-30 21:29:30 +00:00
# Searches for packages in the local database.
alias pacS="${_pacman_frontend} --query --search"
2011-08-31 03:16:15 +00:00
2012-06-30 21:29:30 +00:00
# Lists orphan packages.
alias pacman-list-orphans="${_pacman_sudo}${_pacman_frontend} --query --deps --unrequired"
2011-08-31 03:16:15 +00:00
2012-06-30 21:29:30 +00:00
# Removes orphan packages.
alias pacman-remove-orphans="${_pacman_sudo}${_pacman_frontend} --remove --recursive \$(${_pacman_frontend} --quiet --query --deps --unrequired)"
2011-08-31 03:16:15 +00:00
2012-06-30 21:29:30 +00:00
# Synchronizes the local package and Arch Build System databases against the
# repositories using the asp tool.
if (( $+commands[asp] )); then
alias pacu="${_pacman_sudo}${_pacman_frontend} --sync --refresh && sudo asp update"
2011-10-12 03:13:58 +00:00
else
alias pacu="${_pacman_sudo}${_pacman_frontend} --sync --refresh"
2011-10-12 03:13:58 +00:00
fi
2011-08-31 03:16:15 +00:00
2012-06-30 21:29:30 +00:00
# Synchronizes the local package database against the repositories then
# upgrades outdated packages.
alias pacU="${_pacman_sudo}${_pacman_frontend} --sync --refresh --sysupgrade"
2012-06-30 21:29:30 +00:00
unset _pacman_{frontend,sudo}