1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00

karabiner: fix config for real

This commit is contained in:
RGBCube 2025-06-23 00:54:34 +03:00
parent a0519db66d
commit f94b6ad5a1
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -37,11 +37,11 @@
manipulators = allBasic [ manipulators = allBasic [
{ # ğ -> [ { # ğ -> [
from.key_code = "open_bracket"; from.key_code = "open_bracket";
from.modifiers.optional = [ "shift" "control" "option" "command" "fn" ]; from.modifiers.optional = [ "control" "option" "command" "fn" ];
to = [{ to = [{
key_code = "8"; key_code = "8";
modifiers = [ "option" ]; modifiers = [ "right_option" ];
}]; }];
} }
{ # Ğ -> { { # Ğ -> {
@ -51,16 +51,16 @@
to = [{ to = [{
key_code = "7"; key_code = "7";
modifiers = [ "option" ]; modifiers = [ "right_option" ];
}]; }];
} }
{ # ü -> ] { # ü -> ]
from.key_code = "close_bracket"; from.key_code = "close_bracket";
from.modifiers.optional = [ "shift" "control" "option" "command" "fn" ]; from.modifiers.optional = [ "control" "option" "command" "fn" ];
to = [{ to = [{
key_code = "9"; key_code = "9";
modifiers = [ "option" ]; modifiers = [ "right_option" ];
}]; }];
} }
{ # Ü -> } { # Ü -> }
@ -70,37 +70,37 @@
to = [{ to = [{
key_code = "0"; key_code = "0";
modifiers = [ "option" ]; modifiers = [ "right_option" ];
}]; }];
} }
{ # [ -> ğ { # [ -> ğ
from.key_code = "8"; from.key_code = "8";
from.modifiers.mandatory = [ "option" ]; from.modifiers.mandatory = [ "option" ];
from.modifiers.optional = [ "shift" "control" "command" "fn" ]; from.modifiers.optional = [ "control" "command" "fn" ];
to = [{ key_code = "open_bracket"; }]; to = [{ key_code = "open_bracket"; }];
} }
{ # { -> Ğ { # { -> Ğ
from.key_code = "7"; from.key_code = "7";
from.modifiers.mandatory = [ "option" ]; from.modifiers.mandatory = [ "option" ];
from.modifiers.optional = [ "shift" "control" "command" "fn" ]; from.modifiers.optional = [ "control" "command" "fn" ];
to = [{ to = [{
key_code = "open_bracket"; key_code = "open_bracket";
modifiers = [ "shift" ]; modifiers = [ "shift" ];
}]; }];
} }
{ # ] -> ü { # ] -> ü
from.key_code = "9"; from.key_code = "9";
from.modifiers.mandatory = [ "option" ]; from.modifiers.mandatory = [ "option" ];
from.modifiers.optional = [ "shift" "control" "command" "fn" ]; from.modifiers.optional = [ "control" "command" "fn" ];
to = [{ key_code = "close_bracket"; }]; to = [{ key_code = "close_bracket"; }];
} }
{ # } -> Ü { # } -> Ü
from.key_code = "0"; from.key_code = "0";
from.modifiers.mandatory = [ "option" ]; from.modifiers.mandatory = [ "option" ];
from.modifiers.optional = [ "shift" "control" "command" "fn" ]; from.modifiers.optional = [ "control" "command" "fn" ];
to = [{ to = [{
key_code = "close_bracket"; key_code = "close_bracket";
@ -115,13 +115,13 @@
manipulators = allBasic [ manipulators = allBasic [
{ # ı -> i { # ı -> i
from.key_code = "quote"; from.key_code = "quote";
from.modifiers.optional = [ "shift" "control" "option" "command" "fn" ]; from.modifiers.optional = [ "control" "option" "command" "fn" ];
to = [{ key_code = "i"; }]; to = [{ key_code = "i"; }];
} }
{ # i -> ı { # i -> ı
from.key_code = "i"; from.key_code = "i";
from.modifiers.optional = [ "shift" "control" "option" "command" "fn" ]; from.modifiers.optional = [ "control" "option" "command" "fn" ];
to = [{ key_code = "quote"; }]; to = [{ key_code = "quote"; }];
} }