User feedback during downloading/installing would be nice #631

Closed
opened 2026-01-19 18:34:46 +00:00 by michael · 1 comment
Owner

Originally created by @scriptingosx on GitHub.

Originally created by @scriptingosx on GitHub.
michael added the featurehacktoberfest labels 2026-01-19 18:34:46 +00:00
Author
Owner

@mkoubavs commented on GitHub:

As an easy semi-solution to this problem, I've added additional calls to displaynotification to have the script notify a user when the download starts, and when the install starts, in addition to the complete notification. We found this particularly useful for large application updates such as updating Microsoft Office.

ie:
# MARK: download the archive
if [[ $currentUser != "loginwindow" ]]; then displaynotification "Downloading $name update" "Download in progress" fi
# MARK: install the download
if [[ $currentUser != "loginwindow" ]]; then displaynotification "Updating $name" "Update in progress. Please wait." fi

@mkoubavs commented on GitHub: As an easy semi-solution to this problem, I've added additional calls to `displaynotification` to have the script notify a user when the download starts, and when the install starts, in addition to the complete notification. We found this particularly useful for large application updates such as updating Microsoft Office. ie: `# MARK: download the archive` `if [[ $currentUser != "loginwindow" ]]; then displaynotification "Downloading $name update" "Download in progress" fi` `# MARK: install the download` `if [[ $currentUser != "loginwindow" ]]; then displaynotification "Updating $name" "Update in progress. Please wait." fi`
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Installomator/Installomator#631