mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
16 lines
388 B
Plaintext
16 lines
388 B
Plaintext
# Pacman hook to automatically run paccache -r with pacman
|
|
# This hook is disabled by default, it can be enabled by
|
|
# renaming this file from paccache.hook.bak to paccache.hook
|
|
|
|
[Trigger]
|
|
Operation = Upgrade
|
|
Operation = Install
|
|
Operation = Remove
|
|
Type = Package
|
|
Target = *
|
|
|
|
[Action]
|
|
Description = Cleaning pacman cache with paccache ...
|
|
When = PostTransaction
|
|
Exec = /usr/bin/paccache -r
|