Add files via upload

This commit is contained in:
Leaced 2023-03-23 15:26:14 +01:00 committed by GitHub
parent 18463bcc35
commit ce78fb1d01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 0 deletions

10
orphans.hook Normal file
View file

@ -0,0 +1,10 @@
[Trigger]
Operation = Remove
Operation = Upgrade
Type = Package
Target = *
[Action]
Description = List orphans
When = PostTransaction
Exec = /usr/bin/bash -c "(/usr/bin/pacman -Qtd && /usr/bin/echo 'uninstall all with »yay -Qtdq | yay -Rns -«') || /usr/bin/echo '==> None found'"

11
paccache.hook Normal file
View file

@ -0,0 +1,11 @@
[Trigger]
Operation = Remove
Operation = Install
Operation = Upgrade
Type = Package
Target = *
[Action]
Description = Keep the last cache of currently installed packages
When = PostTransaction
Exec = /usr/bin/paccache -r

11
paccache2.hook Normal file
View file

@ -0,0 +1,11 @@
[Trigger]
Operation = Remove
Operation = Install
Operation = Upgrade
Type = Package
Target = *
[Action]
Description = Delete cache of uninstalled packages
When = PostTransaction
Exec = /usr/bin/paccache -ruk1

10
unneeded.hook Normal file
View file

@ -0,0 +1,10 @@
[Trigger]
Operation = Remove
Operation = Upgrade
Type = Package
Target = *
[Action]
Description = Possibly unneeded packages (e.g. dependency cycles)
When = PostTransaction
Exec = /usr/bin/bash -c "(pacman -Qqd | pacman -Rsup - && /usr/bin/echo 'uninstall all with »pacman -Qqd | pacman -Rsu -«') || /usr/bin/echo '==> None found'"