-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnotification.talon
24 lines (17 loc) · 919 Bytes
/
notification.talon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
os: mac
-
^(note | notification) <number_small> {user.notification_actions}$:
user.notification_action(number_small - 1, notification_actions)
^(note | notification) <number_small> actions$:
user.notification_show_actions(number_small - 1)
^(note | notification) actions$: user.notification_show_actions(-1)
^(note | notification) {user.notification_actions} <number_small>$:
user.notification_action(number_small - 1, notification_actions)
^(note | notification) {user.notification_actions} {user.notification_apps}$:
user.notification_app_action(notification_apps, notification_actions)
^(note | notification) {user.notification_apps} {user.notification_actions}$:
user.notification_app_action(notification_apps, notification_actions)
^(note | notification) update$: user.notifications_update()
^(note | notification) center$:
user.notification_center()
user.notifications_update()