From 83d043f186fe4abe9250f9bf99ea36d9e6e23f59 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 9 Feb 2026 20:34:58 +0000 Subject: [PATCH] feat(hammerspoon/hosts): update app toggle keybindings for improved access Added keybinding for Codex and updated bindings for Conductor and ChatGPT Atlas. This enhances the app toggle functionality for better user experience. --- hammerspoon/hosts/hati.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hammerspoon/hosts/hati.lua b/hammerspoon/hosts/hati.lua index 63d396d..0637b07 100644 --- a/hammerspoon/hosts/hati.lua +++ b/hammerspoon/hosts/hati.lua @@ -11,8 +11,10 @@ local function init_hotkeys() hs.hotkey.bind({ 'cmd', 'alt', 'ctrl' }, 'S', apptoggle.showAppInfo) apptoggle:bind({ 'cmd', 'alt', 'ctrl' }, 'A', { 'Activity Monitor' }) + apptoggle:bind({ 'cmd', 'ctrl' }, '1', { 'Codex' }) apptoggle:bind({ 'cmd', 'ctrl' }, '2', { 'Claude' }) - apptoggle:bind({ 'cmd', 'ctrl' }, '4', { 'Open WebUI' }) + apptoggle:bind({ 'cmd', 'ctrl' }, '3', { 'Conductor' }) + apptoggle:bind({ 'cmd', 'ctrl' }, '4', { 'ChatGPT Atlas' }, { 'ChatGPT' }) apptoggle:bind({ 'cmd', 'ctrl' }, 'A', { 'Argo CD' }) apptoggle:bind({ 'cmd', 'ctrl' }, 'B', { 'TablePlus' }, { 'Lens' }) apptoggle:bind({ 'cmd', 'ctrl' }, 'D', { 'Mail+ for Gmail' }, { 'Notion Mail' })