-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.json
42 lines (41 loc) · 878 Bytes
/
example.json
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
{
"widget": {
"icon": "smile",
"text": "noobie",
"mouse_actions": {
"on_scroll_up": "echo 'scroll up'",
"on_scroll_down": "echo 'scroll down'",
"on_right_click": "echo 'right click'"
}
},
"menu": {
"items": [
{
"icon": "https://avatars.githubusercontent.com/u/9363150?v=4",
"icon_size": 40,
"title": "Say hi!",
"onclick": "notify-send 'hi!'"
},
{
"icon": "terminal",
"title": "Execute some script",
"onclick": "/tmp/somescript.sh"
},
{
"type": "header",
"title": "Header"
},
{
"icon": "slack",
"title": "OpenSlack",
"onclick": "xdg-open https://slack.com"
},
{
"type" : "separator"
},
{
"title": "Menu item with no icon and no action"
}
]
}
}