ba5637fdef
Removed "label" properties which no longer have any function. Labels are still used as layer names and as identifiers for sending behaviors between sides of a split keyboard, so those have been left alone for now.
40 lines
923 B
Plaintext
40 lines
923 B
Plaintext
#include <dt-bindings/zmk/keys.h>
|
|
#include <behaviors.dtsi>
|
|
#include <dt-bindings/zmk/kscan_mock.h>
|
|
|
|
/ {
|
|
behaviors {
|
|
ht_bal: behavior_hold_tap_balanced {
|
|
compatible = "zmk,behavior-hold-tap";
|
|
#binding-cells = <2>;
|
|
flavor = "balanced";
|
|
tapping-term-ms = <300>;
|
|
bindings = <&kp>, <&kp>;
|
|
};
|
|
};
|
|
|
|
keymap {
|
|
compatible = "zmk,keymap";
|
|
|
|
default_layer {
|
|
bindings = <
|
|
&ht_bal LEFT_SHIFT F &ht_bal LEFT_CONTROL J
|
|
&ht_bal LEFT_GUI H &ht_bal LEFT_ALT L
|
|
>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&kscan {
|
|
events = <
|
|
ZMK_MOCK_PRESS(0,0,100)
|
|
ZMK_MOCK_PRESS(0,1,100)
|
|
ZMK_MOCK_PRESS(1,0,100)
|
|
ZMK_MOCK_PRESS(1,1,100)
|
|
ZMK_MOCK_RELEASE(0,0,100)
|
|
ZMK_MOCK_RELEASE(0,1,100)
|
|
ZMK_MOCK_RELEASE(1,0,100)
|
|
ZMK_MOCK_RELEASE(1,1,100)
|
|
>;
|
|
};
|