diff options
| author | jason | 2015-02-16 18:32:07 -0700 |
|---|---|---|
| committer | jason | 2015-02-16 18:32:07 -0700 |
| commit | b5fcebc573ecc765f8890757f4633fe77da566a6 (patch) | |
| tree | 717f98d2e1608f140261d14510229f00a3f0632a /amethyst | |
| parent | 9e64ff4a26227803ca7a862786b1db14611810e6 (diff) | |
| download | dotfiles-b5fcebc573ecc765f8890757f4633fe77da566a6.tar.gz dotfiles-b5fcebc573ecc765f8890757f4633fe77da566a6.zip | |
add some more move in stuff.
Diffstat (limited to 'amethyst')
| -rw-r--r-- | amethyst | 231 |
1 files changed, 231 insertions, 0 deletions
diff --git a/amethyst b/amethyst new file mode 100644 index 0000000..575a4e2 --- /dev/null +++ b/amethyst | |||
| @@ -0,0 +1,231 @@ | |||
| 1 | { | ||
| 2 | "LAYOUTS": "----------------------", | ||
| 3 | "layouts": [ | ||
| 4 | "tall", | ||
| 5 | "wide", | ||
| 6 | "fullscreen", | ||
| 7 | "column" | ||
| 8 | ], | ||
| 9 | |||
| 10 | "MODIFIERS": "----------------------", | ||
| 11 | "Valid modifiers are": [ | ||
| 12 | "option", | ||
| 13 | "shift", | ||
| 14 | "control", | ||
| 15 | "command" | ||
| 16 | ], | ||
| 17 | |||
| 18 | "mod1": [ | ||
| 19 | "option", | ||
| 20 | "shift" | ||
| 21 | ], | ||
| 22 | "mod2": [ | ||
| 23 | "option", | ||
| 24 | "shift", | ||
| 25 | "control" | ||
| 26 | ], | ||
| 27 | |||
| 28 | "COMMANDS": "----------------------", | ||
| 29 | "Commands are": { | ||
| 30 | "cycle-layout": "Cycle layout to the next layout", | ||
| 31 | "cycle-layout-backward": "Cycle layout to the previous layout", | ||
| 32 | "focus-screen-1": "Focus the main window on the first screen", | ||
| 33 | "focus-screen-2": "Focus the main window on the second screen", | ||
| 34 | "focus-screen-3": "Focus the main window on the third screen", | ||
| 35 | "focus-screen-4": "Focus the main window on the fourth screen", | ||
| 36 | "throw-screen-1": "Throw the focused window to the first screen", | ||
| 37 | "throw-screen-2": "Throw the focused window to the second screen", | ||
| 38 | "throw-screen-3": "Throw the focused window to the third screen", | ||
| 39 | "throw-screen-4": "Throw the focused window to the fourth screen", | ||
| 40 | "shrink-main": "Shrink the main pane of the current layout", | ||
| 41 | "expand-main": "Expand the main pane of the current layout", | ||
| 42 | "increase-main": "Increase the number of windows in the main pane", | ||
| 43 | "decrease-main": "Decrease the number of windows in the main pane", | ||
| 44 | "focus-ccw": "Move window focus counter-clockwise on the current screen", | ||
| 45 | "focus-cw": "Move window focus clockwise on the current screen", | ||
| 46 | "swap-ccw": "Swap focused window with the next window going counter-clockwise", | ||
| 47 | "swap-cw": "Swap focused window with the next window going clockwise", | ||
| 48 | "swap-main": "Swap focused window with the main window of its screen", | ||
| 49 | "throw-space-1": "Throw the focused window to the first space", | ||
| 50 | "throw-space-2": "Throw the focused window to the second space", | ||
| 51 | "throw-space-3": "Throw the focused window to the third space", | ||
| 52 | "throw-space-4": "Throw the focused window to the fourth space", | ||
| 53 | "throw-space-5": "Throw the focused window to the fifth space", | ||
| 54 | "throw-space-6": "Throw the focused window to the sixth space", | ||
| 55 | "throw-space-7": "Throw the focused window to the seventh space", | ||
| 56 | "throw-space-8": "Throw the focused window to the eighth space", | ||
| 57 | "throw-space-9": "Throw the focused window to the ninth space", | ||
| 58 | "toggle-float": "Toggle the focused window between being floating and tiled" | ||
| 59 | }, | ||
| 60 | |||
| 61 | "screens": "4", | ||
| 62 | |||
| 63 | "cycle-layout": { | ||
| 64 | "mod": "mod1", | ||
| 65 | "key": "space" | ||
| 66 | }, | ||
| 67 | "cycle-layout-backward": { | ||
| 68 | "mod": "mod2", | ||
| 69 | "key": "space" | ||
| 70 | }, | ||
| 71 | "select-tall-layout": { | ||
| 72 | "mod": "mod1", | ||
| 73 | "key": "a" | ||
| 74 | }, | ||
| 75 | "select-wide-layout": { | ||
| 76 | "mod": "mod1", | ||
| 77 | "key": "s" | ||
| 78 | }, | ||
| 79 | "select-fullscreen-layout": { | ||
| 80 | "mod": "mod1", | ||
| 81 | "key": "d" | ||
| 82 | }, | ||
| 83 | "select-column-layout": { | ||
| 84 | "mod": "mod1", | ||
| 85 | "key": "f" | ||
| 86 | }, | ||
| 87 | "focus-screen-1": { | ||
| 88 | "mod": "mod1", | ||
| 89 | "key": "w" | ||
| 90 | }, | ||
| 91 | "focus-screen-2": { | ||
| 92 | "mod": "mod1", | ||
| 93 | "key": "e" | ||
| 94 | }, | ||
| 95 | "focus-screen-3": { | ||
| 96 | "mod": "mod1", | ||
| 97 | "key": "r" | ||
| 98 | }, | ||
| 99 | "focus-screen-4": { | ||
| 100 | "mod": "mod1", | ||
| 101 | "key": "q" | ||
| 102 | }, | ||
| 103 | "throw-screen-1": { | ||
| 104 | "mod": "mod2", | ||
| 105 | "key": "w" | ||
| 106 | }, | ||
| 107 | "throw-screen-2": { | ||
| 108 | "mod": "mod2", | ||
| 109 | "key": "e" | ||
| 110 | }, | ||
| 111 | "throw-screen-3": { | ||
| 112 | "mod": "mod2", | ||
| 113 | "key": "r" | ||
| 114 | }, | ||
| 115 | "throw-screen-4": { | ||
| 116 | "mod": "mod2", | ||
| 117 | "key": "q" | ||
| 118 | }, | ||
| 119 | "shrink-main": { | ||
| 120 | "mod": "mod1", | ||
| 121 | "key": "h" | ||
| 122 | }, | ||
| 123 | "expand-main": { | ||
| 124 | "mod": "mod1", | ||
| 125 | "key": "l" | ||
| 126 | }, | ||
| 127 | "increase-main": { | ||
| 128 | "mod": "mod1", | ||
| 129 | "key": "," | ||
| 130 | }, | ||
| 131 | "decrease-main": { | ||
| 132 | "mod": "mod1", | ||
| 133 | "key": "." | ||
| 134 | }, | ||
| 135 | "focus-ccw": { | ||
| 136 | "mod": "mod1", | ||
| 137 | "key": "j" | ||
| 138 | }, | ||
| 139 | "focus-cw": { | ||
| 140 | "mod": "mod1", | ||
| 141 | "key": "k" | ||
| 142 | }, | ||
| 143 | "swap-screen-ccw": { | ||
| 144 | "mod": "mod2", | ||
| 145 | "key": "h" | ||
| 146 | }, | ||
| 147 | "swap-screen-cw": { | ||
| 148 | "mod": "mod2", | ||
| 149 | "key": "l" | ||
| 150 | }, | ||
| 151 | "swap-ccw": { | ||
| 152 | "mod": "mod2", | ||
| 153 | "key": "j" | ||
| 154 | }, | ||
| 155 | "swap-cw": { | ||
| 156 | "mod": "mod2", | ||
| 157 | "key": "k" | ||
| 158 | }, | ||
| 159 | "swap-main": { | ||
| 160 | "mod": "mod1", | ||
| 161 | "key": "enter" | ||
| 162 | }, | ||
| 163 | "throw-space-1": { | ||
| 164 | "mod": "mod2", | ||
| 165 | "key": "1" | ||
| 166 | }, | ||
| 167 | "throw-space-2": { | ||
| 168 | "mod": "mod2", | ||
| 169 | "key": "2" | ||
| 170 | }, | ||
| 171 | "throw-space-3": { | ||
| 172 | "mod": "mod2", | ||
| 173 | "key": "3" | ||
| 174 | }, | ||
| 175 | "throw-space-4": { | ||
| 176 | "mod": "mod2", | ||
| 177 | "key": "4" | ||
| 178 | }, | ||
| 179 | "throw-space-5": { | ||
| 180 | "mod": "mod2", | ||
| 181 | "key": "5" | ||
| 182 | }, | ||
| 183 | "throw-space-6": { | ||
| 184 | "mod": "mod2", | ||
| 185 | "key": "6" | ||
| 186 | }, | ||
| 187 | "throw-space-7": { | ||
| 188 | "mod": "mod2", | ||
| 189 | "key": "7" | ||
| 190 | }, | ||
| 191 | "throw-space-8": { | ||
| 192 | "mod": "mod2", | ||
| 193 | "key": "8" | ||
| 194 | }, | ||
| 195 | "throw-space-9": { | ||
| 196 | "mod": "mod2", | ||
| 197 | "key": "9" | ||
| 198 | }, | ||
| 199 | "toggle-float": { | ||
| 200 | "mod": "mod1", | ||
| 201 | "key": "t" | ||
| 202 | }, | ||
| 203 | "toggle-tiling": { | ||
| 204 | "mod": "mod2", | ||
| 205 | "key": "t" | ||
| 206 | }, | ||
| 207 | "display-current-layout": { | ||
| 208 | "mod": "mod1", | ||
| 209 | "key": "i" | ||
| 210 | }, | ||
| 211 | |||
| 212 | "MISC": "----------------------", | ||
| 213 | "floating": [ | ||
| 214 | "com.apple.systempreferences", | ||
| 215 | "com.aspiro.tidal.25F5C0086CDE1F22CA0B92A487729991CA6CD013.1", | ||
| 216 | "org.videolan.vlc", | ||
| 217 | "io.neat.Bee", | ||
| 218 | "com.evernote.Evernote", | ||
| 219 | "com.microsoft.onenote.mac", | ||
| 220 | "com.mouapp.Mou", | ||
| 221 | "com.btgs.plannermac", | ||
| 222 | "com.zaal.cjournalmac", | ||
| 223 | "com.dayoneapp.dayone", | ||
| 224 | "com.enderlabs.EBTerminal" | ||
| 225 | ], | ||
| 226 | "float-small-windows": true, | ||
| 227 | "mouse-follows-focus": false, | ||
| 228 | "focus-follows-mouse": false, | ||
| 229 | "enables-layout-hud": true, | ||
| 230 | "enables-layout-hud-on-space-change": true | ||
| 231 | } | ||