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:
parent
5371cb191a
commit
1bd9dd2b63
1 changed files with 40 additions and 0 deletions
|
|
@ -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";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue