If you occasionally see a message saying that Time Machine has needed to delete old backups to make room, don’t worry, that’s normal. Time Machine will keep backing up versions of your files and keep around files you have deleted until it fills up its hard drive. Then it gets rid of the oldest stuff first, always keeping a complete backup of your current files. But it can be annoying to get notifications. You can switch that off in System Preferences, Time Machine. Click the Options button and turn off the “Notify after old backups are deleted” option.
So I like those notifications that appear at the top right corner of your Mac's screen. I sometimes create "right now" reminders so that I get one of those and it bugs me until I do the task.Instead of adding to my Reminders list with these, and seeing them on my other devices, I've come up with a JXA script that I can easily trigger that will put one of these notifications on the screen. Here is the script I am using: <blockquote>app = Application.currentApplication(); app.includeStandardAdditions = true; var message = app.displayDialog('What?', { defaultAnswer: "" }).textReturned; app.displayNotification(message,{withTitle: 'Reminder'})</blockquote>







