-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathopencode-notifier.json
More file actions
51 lines (51 loc) · 1.64 KB
/
opencode-notifier.json
File metadata and controls
51 lines (51 loc) · 1.64 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
44
45
46
47
48
49
50
51
{
"sound": true,
"notification": true,
"timeout": 5,
"showProjectName": true,
"showSessionTitle": false,
"showIcon": false,
"suppressWhenFocused": true,
"notificationSystem": "ghostty",
"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 needs permission: {sessionTitle}",
"complete": "Session has finished: {sessionTitle}",
"subagent_complete": "Subagent task completed: {sessionTitle}",
"error": "Session encountered an error: {sessionTitle}",
"question": "Session has a question: {sessionTitle}",
"user_cancelled": "Session was cancelled by user: {sessionTitle}"
},
"sounds": {
"permission": "/System/Library/Sounds/bottle.aiff",
"complete": "/System/Library/Sounds/bottle.aiff",
"subagent_complete": "/System/Library/Sounds/bottle.aiff",
"error": "/System/Library/Sounds/bottle.aiff",
"question": "/System/Library/Sounds/bottle.aiff",
"user_cancelled": "/System/Library/Sounds/bottle.aiff"
},
"volumes": {
"permission": 1,
"complete": 1,
"subagent_complete": 1,
"error": 1,
"question": 1,
"user_cancelled": 1
}
}