-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtyme2_applescript_hooks.scpt
19 lines (15 loc) · 1.04 KB
/
tyme2_applescript_hooks.scpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
on timerStartedForTaskRecord(tskRecordID)
tell application "Alfred" to run trigger "reload" in workflow "com.patrickkahl.tyme" with argument "cache:updateTaskForTaskRecordId:" & tskRecordID
end timerStartedForTaskRecord
on timerStoppedForTaskRecord(tskRecordID)
tell application "Alfred" to run trigger "reload" in workflow "com.patrickkahl.tyme" with argument "cache:updateTaskForTaskRecordId:" & tskRecordID
end timerStoppedForTaskRecord
on timeoutDetectedForTaskRecord(tskRecordID)
tell application "Alfred" to run trigger "reload" in workflow "com.patrickkahl.tyme" with argument "cache:updateTaskForTaskRecordId:" & tskRecordID
end timeoutDetectedForTaskRecord
on projectCompletedChanged(projectID)
tell application "Alfred" to run trigger "reload" in workflow "com.patrickkahl.tyme" with argument "cache:updateProject:" & projectID
end projectCompletedChanged
on taskCompletedChanged(tskID)
tell application "Alfred" to run trigger "reload" in workflow "com.patrickkahl.tyme" with argument "cache:updateTask:" & tskID
end taskCompletedChanged