This little script might be right for you, if you have the same problem like me, that the notifications (especially long lasting ones like calendar notifications) are always there where you want to click something.
This script will move the notifications down by 150px.
- Open the
Automator
App on your Mac - Choose
App
as preset - Search for
AppleScript
and add it to the program - Add the contents of the
script.scpt
file in this Repo to theAppleScript
block - Save your program
- Launch your saved app from the finder once and accept the request to control System Events. After that, the program also needs to be allowed for
Security & Privacy
>Accessibility
- Open the mac settings and search for
login items
and add the app to theopen on launch
The {0, 150}
sets the position of the notification to be 150px lower than normal. {0, 0}
is the default upper right position.
In order to move the notification more to the left, you have set the first number to a negative number.
You can also use some calculations and variables to set the position more relative than static, but for me {0, 150}
was the perfect spot.
You can open a second automator, where you add a notification
block and trigger it every time you have changed your notification mover. (In case you're in the "do not disturb mode": disable it)
Andrew A. https://apple.stackexchange.com/a/468302