mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
28 lines
1.1 KiB
Lua
28 lines
1.1 KiB
Lua
local obj = {}
|
|
|
|
function obj.init()
|
|
local apptoggle = require('app_toggle')
|
|
|
|
apptoggle:bind({ 'cmd', 'alt', 'ctrl' }, 'A', { 'Activity Monitor' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, '2', { 'ChatGPT' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, '4', { 'FastGPT' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, '5', { 'Microsoft Edge' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'A', { 'Messages' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'B', { 'TablePlus' }, { 'Lens' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'C', { 'Calendar' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'D', { 'Mimestream' }, { 'Mailplane' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'E', { 'Emacs', '/Applications/Emacs.app' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'F', { 'Element Nightly' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'S', { 'Music' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'T', { 'Discord PTB' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'X', { 'Notion' }, { 'Obsidian' })
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'Z', { 'Slack' })
|
|
|
|
apptoggle:bind({ 'cmd', 'ctrl' }, 'W',
|
|
{ 'Code - Insiders', '/Applications/Visual Studio Code - Insiders.app' },
|
|
{ 'Code', '/Applications/Visual Studio Code.app' }
|
|
)
|
|
end
|
|
|
|
return obj
|