Add mac app agent and Terminal.app specific keybinds

This commit is contained in:
2026-03-18 07:59:46 -07:00
parent 025d33b739
commit 96d5a2b249
9 changed files with 195 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
--- a/keyboards/system76/system76_ec.c
+++ b/keyboards/system76/system76_ec.c
@@ -1,3 +1,4 @@
+#include "app_focus.h"
/*
* Copyright (C) 2023 System76
* Copyright (C) 2021 Jimmy Cassis <KernelOops@outlook.com>
@@ -278,6 +279,7 @@
}
void raw_hid_receive(uint8_t *data, uint8_t length) {
+ if (app_focus_raw_hid_intercept(data, length)) return;
// Error response by default, set to success by commands
data[1] = 1;