From 937fe2585e779b161b597a6030c347606a5af949 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Mon, 8 Jun 2026 20:04:22 +0200 Subject: [PATCH] Swap right option and command on G213 --- modules/darwin/karabiner.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/darwin/karabiner.nix b/modules/darwin/karabiner.nix index 3edc55b..9a9748b 100644 --- a/modules/darwin/karabiner.nix +++ b/modules/darwin/karabiner.nix @@ -96,6 +96,14 @@ let from.key_code = "left_option"; to = [ { key_code = "left_command"; } ]; } + { + from.key_code = "right_command"; + to = [ { key_code = "right_option"; } ]; + } + { + from.key_code = "right_option"; + to = [ { key_code = "right_command"; } ]; + } { from.key_code = "application"; to = [ { apple_vendor_top_case_key_code = "keyboard_fn"; } ];