From 1bd9dd2b63983fc0ef6a559f0a5271949479e1e5 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Fri, 22 May 2026 10:24:12 +0200 Subject: [PATCH] Add Hyperkey+C for ChatGPT and Hyperkey+L for Claude in Helium --- modules/darwin/karabiner.nix | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/modules/darwin/karabiner.nix b/modules/darwin/karabiner.nix index 58bc1ca..08fbf28 100644 --- a/modules/darwin/karabiner.nix +++ b/modules/darwin/karabiner.nix @@ -12,6 +12,8 @@ let openHeliumNotifications = "open -na Helium.app --args https://x.com/i/notifications"; openHeliumT3Chat = "open -na Helium.app --args https://t3.chat/"; openHeliumExaSearch = "open -na Helium.app --args https://exa.ai/search"; + openChatGPT = "open -na Helium.app --args https://chatgpt.com/"; + openClaude = "open -na Helium.app --args https://claude.ai/new"; numbers = [ "1" @@ -255,6 +257,44 @@ let } ]; } + { + description = "Hyper+C opens ChatGPT"; + manipulators = [ + { + from = { + key_code = "c"; + modifiers = { + mandatory = hyperModifiers; + }; + }; + to = [ + { + shell_command = openChatGPT; + } + ]; + type = "basic"; + } + ]; + } + { + description = "Hyper+L opens Claude"; + manipulators = [ + { + from = { + key_code = "l"; + modifiers = { + mandatory = hyperModifiers; + }; + }; + to = [ + { + shell_command = openClaude; + } + ]; + type = "basic"; + } + ]; + } ]; };