From 42d69a769e1a258074372078f17f3e1380ea21b6 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Mon, 22 Jun 2026 14:29:25 +0200 Subject: [PATCH] hyperkey: add rephrase prompt copy --- modules/darwin/karabiner.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/modules/darwin/karabiner.nix b/modules/darwin/karabiner.nix index 9a9748b..7c8ec32 100644 --- a/modules/darwin/karabiner.nix +++ b/modules/darwin/karabiner.nix @@ -518,6 +518,25 @@ let } ]; } + { + description = "Hyper+0 copies a rephrase prompt into the clipboard"; + manipulators = [ + { + from = { + key_code = "0"; + modifiers = { + mandatory = hyperModifiers; + }; + }; + to = [ + { + shell_command = "printf '%s' 'rephrase the tweet on the screen in a more humanly-understandable way' | pbcopy"; + } + ]; + type = "basic"; + } + ]; + } ]; };