-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
149 lines (149 loc) · 4.15 KB
/
manifest.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"required_api_version": "2",
"name": "Window Manager",
"description": "Window manager for Ulauncher",
"developer_name": "gnikolaos",
"icon": "images/wm-logo.svg",
"preferences": [
{
"id": "top-half",
"type": "keyword",
"name": "Top Half",
"default_value": "Top Half",
"description": "Move focused window to the top half of the screen"
},
{
"id": "bottom-half",
"type": "keyword",
"name": "Bottom Half",
"default_value": "Bottom Half",
"description": "Move focused window to the bottom half of the screen"
},
{
"id": "left-half",
"type": "keyword",
"name": "Left Half",
"default_value": "Left Half",
"description": "Moe focused window to the left half of the screen"
},
{
"id": "right-half",
"type": "keyword",
"name": "Right Half",
"default_value": "Right Half",
"description": "Move focused window to the right half of the screen"
},
{
"id": "center",
"type": "keyword",
"name": "Center",
"default_value": "Center",
"description": "Move focused window to the center of the screen"
},
{
"id": "center-half",
"type": "keyword",
"name": "Center Half",
"default_value": "Center Half",
"description": "Move focused window to the center half of the screen"
},
{
"id": "center-three-fourths",
"type": "keyword",
"name": "Center Three Fourths",
"default_value": "Center Three Fourths",
"description": "Move focused window to the center three fourths of the screen"
},
{
"id": "first-three-fourths",
"type": "keyword",
"name": "First Three Fourths",
"default_value": "First Three Fourths",
"description": "Move focused window to the first three fourths of the screen"
},
{
"id": "last-three-fourths",
"type": "keyword",
"name": "Last Three Fourths",
"default_value": "Last Three Fourths",
"description": "Move focused window to the last three fourths of the screen"
},
{
"id": "first-fourth",
"type": "keyword",
"name": "First Fourth",
"default_value": "First Fourth",
"description": "Move focused window to the first fourth of the screen"
},
{
"id": "last-fourth",
"type": "keyword",
"name": "Last Fourth",
"default_value": "Last Fourth",
"description": "Move focused window to the last fourth of the screen"
},
{
"id": "almost-maximize",
"type": "keyword",
"name": "Almost Maximize",
"default_value": "Almost Maximize",
"description": "Almost maximize focused window"
},
{
"id": "next-desktop",
"type": "keyword",
"name": "Next Desktop",
"default_value": "Next Desktop",
"description": "Move focused window to next desktop"
},
{
"id": "previous-desktop",
"type": "keyword",
"name": "Previous Desktop",
"default_value": "Previous Desktop",
"description": "Move focused window to previous desktop"
},
{
"id": "left-monitor",
"type": "keyword",
"name": "Left Monitor",
"default_value": "Left Monitor",
"description": "Move focused window to left monitor"
},
{
"id": "right-monitor",
"type": "keyword",
"name": "Right Monitor",
"default_value": "Right Monitor",
"description": "Move focused window to right monitor"
},
{
"id": "maximize",
"type": "keyword",
"name": "Maximize",
"default_value": "Maximize",
"description": "Maximize focused window"
},
{
"id": "unmaximize",
"type": "keyword",
"name": "Unmaximize",
"default_value": "Unmaximize",
"description": "Unmaximize focused window"
},
{
"id": "minimize",
"type": "keyword",
"name": "Minimize",
"default_value": "Minimize",
"description": "Minimize focused window"
},
{
"id": "close",
"type": "keyword",
"name": "Close",
"default_value": "Close",
"description": "Close focused application"
}
]
}