-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode-notifier.json
More file actions
executable file
·43 lines (42 loc) · 1.31 KB
/
opencode-notifier.json
File metadata and controls
executable file
·43 lines (42 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"sound": false,
"notification": true,
"timeout": 5,
"showProjectName": true,
"showSessionTitle": false,
"showIcon": false,
"suppressWhenFocused": true,
"linux": {
"grouping": false
},
"command": {
"enabled": false,
"path": "/path/to/command",
"args": ["--event", "{event}", "--message", "{message}"],
"minDuration": 0
},
"events": {
"permission": { "sound": true, "notification": true },
"complete": { "sound": true, "notification": true },
"subagent_complete": { "sound": false, "notification": false },
"error": { "sound": true, "notification": true },
"question": { "sound": true, "notification": true },
"user_cancelled": { "sound": false, "notification": false }
},
"messages": {
"permission": "Session {sessionTitle} \n Needs Permission to Continue",
"complete": "Task Complete \n Session {sessionTitle}",
"subagent_complete": "Subagent Task Completed \n Session {sessionTitle}",
"error": "Session {sessionTitle} \n Has Encountered An Error",
"question": "Session {sessionTitle} \n Has a Question for the User",
"user_cancelled": "Session {sessionTitle} \n Canceled by the User"
},
"volumes": {
"permission": 1,
"complete": 1,
"subagent_complete": 1,
"error": 1,
"question": 1,
"user_cancelled": 1
}
}