-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings-schema.json
60 lines (60 loc) · 1.6 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
{
"section1": {
"type": "section",
"description": "Behavior"
},
"show-all-workspaces" : {
"type" : "switch",
"default" : false,
"description": "Show windows from all workspaces"
},
"enable-alerts" : {
"type" : "switch",
"default" : true,
"description" : "Show an alert in the window list when a window from another workspace requires attention"
},
"enable-scrolling" : {
"type" : "switch",
"default" : false,
"description" : "Enable mouse-wheel scrolling in the window list"
},
"reverse-scrolling" : {
"type" : "switch",
"default" : false,
"description" : "Reverse the direction of mouse-wheel scrolling in the window list",
"dependency" : "enable-scrolling"
},
"middle-click-close": {
"type": "switch",
"default": true,
"description": "Middle click to close window"
},
"sort-windows-by-workspace": {
"type": "switch",
"default": false,
"description": "Sort windows by workspace instead of by opening time"
},
"section2": {
"type": "section",
"description": "Display"
},
"buttons-use-entire-space": {
"type": "switch",
"default": false,
"description": "Window buttons can have different sizes and use the entire space available"
},
"window-preview": {
"type": "switch",
"default": true,
"description": "Show window thumbnails on hover"
},
"button-size": {
"type": "spinbutton",
"default": 150,
"min": 20,
"max": 500,
"step": 10,
"units": "pixels",
"description": "Button width in the panel"
}
}