-
Notifications
You must be signed in to change notification settings - Fork 0
/
amethyst
164 lines (157 loc) · 3.91 KB
/
amethyst
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"LAYOUTS": "----------------------",
"layouts": [
"tall",
"fullscreen",
"wide",
"column"
],
"MODIFIERS": "----------------------",
"Valid modifiers are": [
"option",
"shift",
"control",
"command"
],
"mod1": [
"control",
"option"
],
"mod2": [
"control",
"option",
"command"
],
"COMMANDS": "----------------------",
"Commands are": {
"cycle-layout": "Cycle layout to the next layout",
"cycle-layout-backward": "Cycle layout to the previous layout",
"focus-screen-1": "Focus the main window on the first screen",
"focus-screen-2": "Focus the main window on the second screen",
"shrink-main": "Shrink the main pane of the current layout",
"expand-main": "Expand the main pane of the current layout",
"increase-main": "Increase the number of windows in the main pane",
"decrease-main": "Decrease the number of windows in the main pane",
"focus-ccw": "Move window focus counter-clockwise on the current screen",
"focus-cw": "Move window focus clockwise on the current screen",
"swap-ccw": "Swap focused window with the next window going counter-clockwise",
"swap-cw": "Swap focused window with the next window going clockwise",
"swap-main": "Swap focused window with the main window of its screen",
"throw-space-1": "Throw the focused window to the first space",
"throw-space-2": "Throw the focused window to the second space",
"throw-space-3": "Throw the focused window to the third space",
"toggle-float": "Toggle the focused window between being floating and tiled"
},
"screens": "2",
"cycle-layout": {
"mod": "mod1",
"key": "space"
},
"cycle-layout-backward": {
"mod": "mod2",
"key": "space"
},
"select-tall-layout": {
"mod": "mod1",
"key": "h"
},
"select-fullscreen-layout": {
"mod": "mod1",
"key": "t"
},
"select-wide-layout": {
"mod": "mod1",
"key": "n"
},
"select-column-layout": {
"mod": "mod1",
"key": "s"
},
"focus-screen-1": {
"mod": "mod1",
"key": "w"
},
"throw-screen-1": {
"mod": "mod2",
"key": "w"
},
"focus-screen-2": {
"mod": "mod1",
"key": "i"
},
"throw-screen-2": {
"mod": "mod2",
"key": "i"
},
"shrink-main": {
"mod": "mod1",
"key": "r"
},
"expand-main": {
"mod": "mod1",
"key": "l"
},
"increase-main": {
"mod": "mod1",
"key": ","
},
"decrease-main": {
"mod": "mod1",
"key": "."
},
"focus-ccw": {
"mod": "mod1",
"key": "e"
},
"focus-cw": {
"mod": "mod1",
"key": "u"
},
"swap-screen-ccw": {
"mod": "mod2",
"key": "h"
},
"swap-screen-cw": {
"mod": "mod2",
"key": "l"
},
"swap-ccw": {
"mod": "mod2",
"key": "e"
},
"swap-cw": {
"mod": "mod2",
"key": "u"
},
"swap-main": {
"mod": "mod1",
"key": "enter"
},
"throw-space-1": {
"mod": "mod2",
"key": "1"
},
"throw-space-2": {
"mod": "mod2",
"key": "2"
},
"toggle-float": {
"mod": "mod1",
"key": "f"
},
"toggle-tiling": {
"mod": "mod2",
"key": "f"
},
"display-current-layout": {
"mod": "mod1",
"key": "z"
},
"MISC": "----------------------",
"floating": ["com.apple.systempreferences", "com.apple.Stickies", "com.apple.Messages"],
"float-small-windows": true,
"mouse-follows-focus": true,
"focus-follows-mouse": false,
"enables-layout-hud": true,
"enables-layout-hud-on-space-change": false
}