This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings-schema.json
73 lines (73 loc) · 2.08 KB
/
settings-schema.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"overlay-key": {
"type": "keybinding",
"description": "Keyboard shortcut to open and close Slingshot",
"default": "Super_L::Super_R"
},
"menu-icon-custom": {
"type": "checkbox",
"default": false,
"description": "Use a custom icon",
"tooltip": "Unchecking this allows the theme to set the icon",
"dependency": "menu-icon-enabled"
},
"menu-icon": {
"type": "iconfilechooser",
"default": "/usr/share/cinnamon/theme/menu-symbolic.svg",
"description": "Icon",
"tooltip": "Select an icon to show in the panel.",
"dependency": "menu-icon-custom",
"indent": "true"
},
"menu-label": {
"type": "entry",
"default": "Menu",
"description": "Text",
"tooltip": "Enter custom text to show in the panel."
},
"slingshot-icon-size": {
"type": "spinbutton",
"default": 64,
"min": 16,
"max": 128,
"step": 1,
"units": "pixels",
"description": "Icon size:",
"tooltip": "Set the Slingshot icon size."
},
"slingshot-columns": {
"type": "spinbutton",
"default": 5,
"min": 4,
"max": 10,
"step": 1,
"units": "columns",
"description": "Columns:",
"tooltip": "Set the Slingshot column count." },
"slingshot-rows": {
"type": "spinbutton",
"default": 3,
"min": 2,
"max": 10,
"step": 1,
"units": "rows",
"description": "Rows:",
"tooltip": "Set the Slingshot row count."
},
"slingshot-use-category": {
"type": "checkbox",
"default": false,
"description": "Use category view",
"tooltip": "Default to category view."
},
"slingshot-screen-resolution": {
"type": "generic",
"default": ""
},
"menu-editor-button": {
"type": "button",
"description": "Open the menu editor",
"callback": "_launch_editor",
"tooltip": "Press this button to customize your menu entries."
}
}