Skip to content
base-seblu.install 355 B
Newer Older
# arg 1:  the new package version
# arg 2:  the old package version

# arg 1:  the new package version
post_install() {
  echo '::: Unused dependencies'
  pacman -Qdt
  echo '::: Local-only packages'
  pacman -Qm
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install "$1"
}

# vim:set ts=2 sw=2 et: