원클릭으로
add-keyboard-shortcut
Use this skill to add a keyboard shortcut/keybind to the user's computer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use this skill to add a keyboard shortcut/keybind to the user's computer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | add-keyboard-shortcut |
| description | Use this skill to add a keyboard shortcut/keybind to the user's computer |
Look in @home-manager/modules/hyprland.nix for potential existing keybinds conflicting with the new one. If yes, ask the user what they want to do:
Query the nixos mcp server for home-manager hyprland configuration. Bind-specific documentation is available in docs/Hyprland-Binds.md
If the action requires more than a single command execution or the command is complex, write a script into @home-manager/scripts The script template:
{
pkgs,
...
}: {
rebuild =
pkgs.writeShellScript "[ACTION-NAME]"
''
echo "Hello World"
''
}
If the action is simple (or can be done without exec), continue without a script.
If the action is probably best done by hyprland itself, look at docs/Hyprland-Dispatchers.md for a list of hyprland dispatchers.
Now edit @home-manager/modules/hyprland.nix to add the keybind based on the users inputs. Remember to always add a description.
Run the rebuild command (yes, simply rebuild as that is our custom script for rebuilding the nixos config).