This commit is contained in:
Brian Zalewski 2024-01-02 01:20:13 +00:00
parent a60064997c
commit 551e83a1c0

View file

@ -626,10 +626,17 @@ setTimezone() {
fi fi
} }
# @description Configures macOS to enable the notification center # @description Configures macOS to enable the notification center. `&> /dev/null` was added to the command
# because the following useless error was being reported:
#
# ```shell
# Load failed: 5: Input/output error
# Try running `launchctl bootstrap` as root for richer errors.
# Restart your computer for this to take effect
# ```
showNotificationCenter() { showNotificationCenter() {
if command -v m > /dev/null; then if command -v m > /dev/null; then
logg info 'Configuring macOS to show notification center' && m notification showcenter YES logg info 'Configuring macOS to show notification center' && m notification showcenter YES &> /dev/null
fi fi
} }