Add atreus keyboard
Some checks failed
Build QMK firmware / QMK Userspace Build (push) Has been cancelled
Build QMK firmware / QMK Userspace Publish (push) Has been cancelled

This commit is contained in:
2025-07-13 11:38:28 +02:00
parent 41ee8332d1
commit 9ecb54aea0
3 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,13 @@
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case LT(1,KC_SPC):
case LT(2,KC_ENT):
case RALT_T(KC_ESC):
case LT(1,KC_TAB):
// Immediately select the hold action when another key is tapped.
return true;
default:
// Do not select the hold action when another key is tapped.
return false;
}
}