refactor: moongreet-git → moongreet (no-suffix tag-build, keep epoch)
Build and publish packages / build-and-publish (push) Successful in 8m48s

This commit is contained in:
2026-06-10 19:38:25 +02:00
parent a930117ec7
commit db05837b09
3 changed files with 14 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
# ABOUTME: pacman install hooks for Moongreet.
# ABOUTME: Sets ownership on cache directory and prints setup instructions.
post_install() {
if getent passwd greeter > /dev/null 2>&1; then
chown greeter:greeter /var/cache/moongreet
chown greeter:greeter /var/cache/moongreet/last-session
fi
echo "==> Moongreet installed."
echo "==> Add moongreet to your greeter compositor command in /etc/greetd/config.toml."
echo "==> Adjust wallpaper: /etc/moongreet/moongreet.toml"
}
post_upgrade() {
post_install
}