first commit

main
Jay Hankins 2022-11-04 09:22:04 -04:00
commit 18ce224ee0
2 changed files with 34 additions and 0 deletions

1
Spoons/Hyper.spoon Submodule

@ -0,0 +1 @@
Subproject commit 8cfc22401f8f27eaa7fef71f857e79c7ad025891

33
init.lua Normal file
View File

@ -0,0 +1,33 @@
Config = {
applications = {
['com.manytricks.Moom'] = {
bundleID = 'com.manytricks.Moom',
-- hyperKey = 'm',
localBindings = {'c', 'space', 's', 'd', 'delete'}
},
['com.TickTick.task.mac'] = {
bundleID = 'com.TickTick.task.mac',
-- hyperKey = 't',
localBindings = {'t'}
},
['com.agiletortoise.Drafts-OSX'] = {
bundleID = 'com.agiletortoise.Drafts-OSX',
-- hyperKey = 'n',
localBindings = {'n', 'm', '1'}
}
}
}
hs.loadSpoon('Hyper')
Hyper = spoon.Hyper
-- provide the ability to override config per computer
if (hs.fs.displayName('./localConfig.lua')) then
require('localConfig')
end
Hyper:start(Config):setHyperKey('F19')
Hyper:bind({'F19', 'cmd'}, 'r', nil, function()
hs.reload()
end)