diff --git a/orphans.hook b/orphans.hook new file mode 100644 index 0000000..04fc495 --- /dev/null +++ b/orphans.hook @@ -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'" diff --git a/paccache.hook b/paccache.hook new file mode 100644 index 0000000..d295299 --- /dev/null +++ b/paccache.hook @@ -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 diff --git a/paccache2.hook b/paccache2.hook new file mode 100644 index 0000000..f3ce596 --- /dev/null +++ b/paccache2.hook @@ -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 diff --git a/unneeded.hook b/unneeded.hook new file mode 100644 index 0000000..3dffe5c --- /dev/null +++ b/unneeded.hook @@ -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'"