mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
18 lines
584 B
Lua
18 lines
584 B
Lua
local obj = {}
|
|
|
|
function obj.init()
|
|
local apptoggle = require('app_toggle')
|
|
|
|
apptoggle:bind({'alt', 'ctrl'}, 'A', 'Activity Monitor')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'B', 'Sequel Pro')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'C', 'Paw')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'D', 'Mail')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'E', 'Emacs', '/Applications/Emacs.app')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'G', 'Slack')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'S', 'Skype for Business')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'X', 'Calendar')
|
|
apptoggle:bind({'cmd', 'ctrl'}, 'Z', 'Stride')
|
|
end
|
|
|
|
return obj
|