noobie/example.json

43 lines
878 B
JSON
Raw Permalink Normal View History

2021-03-13 04:43:13 +01:00
{
"widget": {
2021-05-02 04:47:33 +02:00
"icon": "smile",
2021-03-13 04:43:13 +01:00
"text": "noobie",
"mouse_actions": {
"on_scroll_up": "echo 'scroll up'",
"on_scroll_down": "echo 'scroll down'",
"on_right_click": "echo 'right click'"
}
},
"menu": {
"items": [
{
2021-05-02 04:47:33 +02:00
"icon": "https://avatars.githubusercontent.com/u/9363150?v=4",
2021-06-20 02:46:04 +02:00
"icon_size": 40,
2021-03-13 04:43:13 +01:00
"title": "Say hi!",
"onclick": "notify-send 'hi!'"
},
{
"icon": "terminal",
"title": "Execute some script",
"onclick": "/tmp/somescript.sh"
},
2021-05-12 16:22:30 +02:00
{
"type": "header",
"title": "Header"
},
2021-03-13 04:43:13 +01:00
{
"icon": "slack",
"title": "OpenSlack",
"onclick": "xdg-open https://slack.com"
2021-04-30 19:32:11 +02:00
},
{
2021-05-12 16:22:30 +02:00
"type" : "separator"
2021-04-30 19:32:11 +02:00
},
{
2021-05-12 16:22:30 +02:00
"title": "Menu item with no icon and no action"
2021-03-13 04:43:13 +01:00
}
]
}
}