1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-05-30 08:37:01 +02:00

Add Hyperkey+C for ChatGPT and Hyperkey+L for Claude in Helium

This commit is contained in:
TheGeneralist 2026-05-22 10:24:12 +02:00
parent 5371cb191a
commit 1bd9dd2b63
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4

View file

@ -12,6 +12,8 @@ let
openHeliumNotifications = "open -na Helium.app --args https://x.com/i/notifications"; openHeliumNotifications = "open -na Helium.app --args https://x.com/i/notifications";
openHeliumT3Chat = "open -na Helium.app --args https://t3.chat/"; openHeliumT3Chat = "open -na Helium.app --args https://t3.chat/";
openHeliumExaSearch = "open -na Helium.app --args https://exa.ai/search"; 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 = [ numbers = [
"1" "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";
}
];
}
]; ];
}; };