2021-03-29 08:12:31 -04:00
|
|
|
post_install() {
|
2022-04-15 03:41:07 -04:00
|
|
|
systemctl --global enable psd
|
|
|
|
systemctl enable systemd-oomd
|
2021-09-07 03:01:35 -04:00
|
|
|
systemctl enable btrfs-balance.timer
|
|
|
|
systemctl enable btrfs-defrag.timer
|
|
|
|
systemctl enable btrfs-scrub.timer
|
|
|
|
systemctl enable btrfs-trim.timer
|
2021-09-19 15:13:59 -04:00
|
|
|
systemctl enable garuda-pacman-lock
|
2022-04-06 14:02:50 -04:00
|
|
|
systemctl enable garuda-pacman-snapshot-reject
|
2022-04-15 03:41:07 -04:00
|
|
|
|
2021-07-11 05:42:04 -04:00
|
|
|
}
|
2021-03-29 08:12:31 -04:00
|
|
|
|
2022-04-25 14:43:42 -04:00
|
|
|
pre_upgrade() {
|
2022-05-14 12:45:11 -04:00
|
|
|
if [[ $(vercmp 2.6.2 $2) -gt 0 ]] && [[ $(vercmp 2.5.8 $2) -lt 0 ]]; then
|
2022-04-25 14:43:42 -04:00
|
|
|
umount /usr/share/libalpm/hooks/01-snapshot-reject.hook
|
|
|
|
# Not technically necessary
|
|
|
|
ln -s /dev/null /etc/pacman.d/hooks/01-snapshot-reject.hook
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-03-29 08:12:31 -04:00
|
|
|
post_upgrade() {
|
2021-09-07 03:01:35 -04:00
|
|
|
echo "Performing misc postinstall operations..."
|
|
|
|
mkfontscale /usr/share/fonts/TTF /usr/share/fonts/OTF /usr/share/fonts/misc > /dev/null 2>&1
|
|
|
|
mkfontdir /usr/share/fonts/TTF /usr/share/fonts/OTF /usr/share/fonts/misc > /dev/null 2>&1
|
|
|
|
fc-cache -s >/dev/null
|
2021-03-29 08:12:31 -04:00
|
|
|
|
2021-09-07 03:01:35 -04:00
|
|
|
glib-compile-schemas usr/share/glib-2.0/schemas
|
|
|
|
gtk-update-icon-cache -ftq usr/share/icons/hicolor
|
|
|
|
/bin/sh -c 'dconf update'
|
2022-04-06 14:02:50 -04:00
|
|
|
|
|
|
|
if [[ $(vercmp 2.6.0 $2) -gt 0 ]]; then
|
|
|
|
systemctl enable garuda-pacman-snapshot-reject
|
|
|
|
fi
|
2021-03-29 08:12:31 -04:00
|
|
|
}
|
2022-04-25 14:43:42 -04:00
|
|
|
|
|
|
|
post_remove() {
|
|
|
|
rm -f /etc/pacman.d/hooks/01-snapshot-reject.hook
|
|
|
|
}
|