mirror of
https://github.com/archlinux/aur.git
synced 2026-03-08 03:29:32 +01:00
- Remove erroneous 'alsold;' from line 1 - This was causing 'alsold: command not found' error during installation - Now post_install() function will work correctly
18 lines
537 B
Text
18 lines
537 B
Text
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"
|
|
}
|
|
|