feat: functions and mods

This commit is contained in:
Bastien Riviere 2024-04-24 15:00:58 +02:00
parent 6142f4eec8
commit 93d831512a
Signed by: babariviere
GPG key ID: 4E5F0839249F162E

View file

@ -133,5 +133,38 @@
>; >;
}; };
functions {
bindings = <
//╭──────────┬──────────┬──────────┬──────────┬──────────╮ ╭──────────┬──────────┬──────────┬──────────┬──────────╮
//│ │ F7 │ F8 │ F9 │ │ │ │ │ │ │ │
&none &kp F7 &kp F8 &kp F9 &none &none &none &none &none &none
//├──────────┼──────────┼──────────┼──────────┼──────────┤ ├──────────┼──────────┼──────────┼──────────┼──────────┤
//│ - │ F4 │ F5 │ F6 │ │ │ │ CTRL │ ALT │ CMD │ SHIFT │
&kp MINUS &kp F4 &kp F5 &kp F6 &none &none &sk LCTRL &sk LALT &sk LCMD &sk LSHFT
//├──────────┼──────────┼──────────┼──────────┼──────────┤ ├──────────┼──────────┼──────────┼──────────┼──────────┤
//│ │ F1 │ F2 │ F3 │ │ │ │ F10 │ F11 │ F12 │ │
&none &kp F1 &kp F2 &kp F3 &none &none &kp F10 &kp F11 &kp F12 &none
//╰──────────┴──────────┴──────────┼──────────┼──────────┤ ├──────────┼──────────┼──────────┴──────────┴──────────╯
&trans &trans &trans &trans
// ╰──────────┴──────────╯ ╰──────────┴──────────╯
>;
};
mods {
bindings = <
//╭──────────┬──────────┬──────────┬──────────┬──────────╮ ╭──────────┬──────────┬──────────┬──────────┬──────────╮
//│ │ │ │ │ │ │ │ │ │ │ │
&trans &trans &trans &trans &trans &none &none &none &none &none
//├──────────┼──────────┼──────────┼──────────┼──────────┤ ├──────────┼──────────┼──────────┼──────────┼──────────┤
//│ - │ │ │ │ │ │ │ CTRL │ ALT │ CMD │ SHIFT │
&transNUS &trans &trans &trans &trans &none &sk LCTRL &sk LALT &sk LCMD &sk LSHFT
//├──────────┼──────────┼──────────┼──────────┼──────────┤ ├──────────┼──────────┼──────────┼──────────┼──────────┤
//│ │ │ │ │ │ │ │ F10 │ F11 │ F12 │ │
&trans &trans &trans &trans &trans &none &kp F10 &kp F11 &kp F12 &none
//╰──────────┴──────────┴──────────┼──────────┼──────────┤ ├──────────┼──────────┼──────────┴──────────┴──────────╯
&trans &trans &trans &trans
// ╰──────────┴──────────╯ ╰──────────┴──────────╯
>;
};
}; };
}; };