aboutsummaryrefslogtreecommitdiff
path: root/combos.h
diff options
context:
space:
mode:
Diffstat (limited to 'combos.h')
-rw-r--r--combos.h17
1 files changed, 2 insertions, 15 deletions
diff --git a/combos.h b/combos.h
index 242e274..38d455c 100644
--- a/combos.h
+++ b/combos.h
@@ -3,31 +3,18 @@
#include "kaleidoscope/plugin/MagicCombo.h"
#include "kaleidoscope/plugin/USB-Quirks.h"
-#include "color-picker.h"
enum {
// Toggle between Boot (6-key rollover; for BIOSes and early boot) and NKRO
// mode.
- COMBO_TOGGLE_NKRO_MODE,
- COMBO_TOGGLE_COLOR_PICKER
+ COMBO_TOGGLE_NKRO_MODE
};
static void toggleKeyboardProtocol(uint8_t combo_index) {
USBQuirks.toggleKeyboardProtocol();
}
-static void toggleColorPicker(uint8_t combo_index) {
- theColorPicker.toggle();
-}
-
-USE_MAGIC_COMBOS(
- {
- .action = toggleKeyboardProtocol,
+USE_MAGIC_COMBOS({.action = toggleKeyboardProtocol,
// Left Fn + Esc + Shift
.keys = { R3C6, R2C6, R3C7 }
- },
- {
- .action = toggleColorPicker,
- // Left Fn + Right Fn
- .keys = { R3C6, R3C9 }
});