aboutsummaryrefslogtreecommitdiff
path: root/keyboards/shared
diff options
context:
space:
mode:
authorChris Wells <chris@mathematicaster.org>2025-10-21 10:38:26 -0500
committerChris Wells <chris@mathematicaster.org>2025-10-21 10:38:26 -0500
commit7aa390883104725c64c65d20a0713cfcd654f637 (patch)
treea3a33e5423e9136ad064b48aee0e41966329c1f0 /keyboards/shared
parente3343bc80dc54416d4e8ee6a60a8e92b630810de (diff)
downloadfw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar
fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.gz
fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.bz2
fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.lz
fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.xz
fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.zst
fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.zip
More correct dfu-util flash script + rearranged personal devices
Diffstat (limited to 'keyboards/shared')
-rw-r--r--keyboards/shared/config.h6
-rw-r--r--keyboards/shared/leader.c38
-rw-r--r--keyboards/shared/rules.mk12
3 files changed, 0 insertions, 56 deletions
diff --git a/keyboards/shared/config.h b/keyboards/shared/config.h
deleted file mode 100644
index 140922d..0000000
--- a/keyboards/shared/config.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#define CTL_ESC LCTL_T(KC_ESC)
-#define TAPPING_TOGGLE 2
-
-#define LEADER_NO_TIMEOUT
-#define LEADER_TIMEOUT 250
-#define LEADER_PER_KEY_TIMING
diff --git a/keyboards/shared/leader.c b/keyboards/shared/leader.c
deleted file mode 100644
index fd8ae82..0000000
--- a/keyboards/shared/leader.c
+++ /dev/null
@@ -1,38 +0,0 @@
-LEADER_EXTERNS();
-
-void matrix_scan_user(void) {
- LEADER_DICTIONARY() {
- leading = false;
- leader_end();
-
- // G
- SEQ_ONE_KEY(LSFT(KC_G)) {
- tap_code(KC_END);
- }
-
- // G
- SEQ_ONE_KEY(RSFT(KC_G)) {
- tap_code(KC_END);
- }
-
- // gg
- SEQ_TWO_KEYS(KC_G, KC_G) {
- tap_code(KC_HOME);
- }
-
- // d
- SEQ_ONE_KEY(KC_D) {
- tap_code(KC_PGDN);
- }
-
- // u
- SEQ_ONE_KEY(KC_U) {
- tap_code(KC_PGUP);
- }
-
- // reset
- SEQ_FIVE_KEYS(KC_R, KC_E, KC_S, KC_E, KC_T) {
- reset_keyboard();
- }
- }
-}
diff --git a/keyboards/shared/rules.mk b/keyboards/shared/rules.mk
deleted file mode 100644
index 1636b99..0000000
--- a/keyboards/shared/rules.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# SRC += leader.c
-
-CONSOLE_ENABLE = no
-COMMAND_ENABLE = yes
-EXTRAKEY_ENABLE = yes
-BACKLIGHT_ENABLE = no
-RGBLIGHT_ENABLE = no
-SLEEP_LED_ENABLE = no
-NKRO_ENABLE = no
-BLUETOOTH_ENABLE = no
-AUDIO_ENABLE = no
-LEADER_ENABLE = yes