kmNerd
December 4, 2025, 7:35pm
1
Howdy,
Does anyone know a way to clear all notifications in macOS Tahoe?
NaOH
December 4, 2025, 7:36pm
2
Have a look at this thread:
KM 11.0.4 Sequoia
The macro consists of only one AppleScript action
tell application "System Events"
try
set _groups to groups of UI element 1 of scroll area 1 of group 1 of window "Notification Center" of application process "NotificationCenter"
repeat with _group in _groups
set _actions to actions of _group
repeat with _action in _actions
if description of _action is in {"Close", "Clear All"} then
perform _action
end if
end repeat
end repeat
…
1 Like
kmNerd
December 4, 2025, 7:42pm
3
Thanks but I would prefer not to install any additional applications for this. Maybe I need to use KM to click “Clear Notifications.”
1 Like
ronald
December 4, 2025, 7:54pm
4
If you click the link above suggested by @NaOH , you will find a pure KM solution that I just posted as an alternative to an AppleScript. Thank you @NaOH for the referral.
@Nige_S @griffman @ALYB
The chatGPT solution usually works (perhaps 80% success) so I did more testing and found a less elegant but much simpler and failsafe solution that I tested many times.
I am enclosing the images below and not the macro because the actual macro depends on screen size and pixels.
It uses the fact that if you click on the date an image appears, and if you click on the "x" below that image, you have direct access to clear all notifications (using ↓ x 2). At the end, keypre…