mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 12:42:43 +01:00
- Remove automatic execution of install-omarchy.sh from post_install/post_upgrade - This prevents FIDO authentication prompts during AUR installation - Users will need to manually run the setup script after installation - Simplifies the installation process and avoids permission issues
18 lines
544 B
Text
18 lines
544 B
Text
alsold;post_install() {
|
|
echo "HyprWhspr has been installed to /opt/hyprwhspr/"
|
|
echo ""
|
|
echo "To complete setup, run:"
|
|
echo " /opt/hyprwhspr/scripts/install-omarchy.sh"
|
|
echo ""
|
|
echo "This will configure permissions and services for your user."
|
|
echo ""
|
|
echo "For more information, see: /usr/share/doc/hyprwhspr/README.md"
|
|
}
|
|
|
|
post_upgrade() {
|
|
echo "HyprWhspr has been upgraded successfully!"
|
|
echo ""
|
|
echo "To update your configuration, run:"
|
|
echo " /opt/hyprwhspr/scripts/install-omarchy.sh"
|
|
}
|
|
|