dotfiles/dotfiles/slate.js
2014-12-20 03:21:31 -08:00

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
});