forked from colonelpanic/dotfiles
17 lines
346 B
JavaScript
17 lines
346 B
JavaScript
var hint = slate.op("hint", {
|
|
"characters" : "ASDFGHJKLQWERTYUIOPCVBN"
|
|
});
|
|
var grid = slate.op("grid", {
|
|
grids: {
|
|
"1920x1080": {"width": 8, "height": 6}
|
|
}
|
|
});
|
|
slate.bindAll({
|
|
"esc:cmd": hint,
|
|
"space:alt": grid
|
|
});
|
|
slate.configAll({
|
|
windowHintsIgnoreHiddenWindows: false,
|
|
windowHintsShowIcons: true,
|
|
windowHintsSpread: true
|
|
}); |