aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2021-03-12 14:07:35 -0500
committerBrian Cully <bjc@kublai.com>2021-03-12 14:07:35 -0500
commit149f6689b330aa4c13890ec88edf8496dd053776 (patch)
tree38db486a058ffa3e83c72edd52ab3fa84f4994fa
parent74b6910df014a34acb141f45d32dcf136d2267ed (diff)
downloadModel01-Firmware-149f6689b330aa4c13890ec88edf8496dd053776.tar.gz
Model01-Firmware-149f6689b330aa4c13890ec88edf8496dd053776.zip
Move keys around to support swaywm a bit better.
Turns out I want a GUI/meta key on the right thumb, so add the left one there as well. Move the right meta to left pink so I’ll still have access to a compose key. Move Syster key above the right meta/compose key, since that slot isn’t otherwise occupied, and it makes sense there.
-rw-r--r--Model01-Firmware.ino8
1 files changed, 4 insertions, 4 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino
index 5b5c4ed..5973b2b 100644
--- a/Model01-Firmware.ino
+++ b/Model01-Firmware.ino
@@ -71,8 +71,8 @@ KEYMAPS(
[PRIMARY] = KEYMAP_STACKED
(Key_Escape, Key_1, Key_2, Key_3, Key_4, Key_5, Key_LEDEffectNext,
Key_Backtick, Key_Quote, Key_Comma, Key_Period, Key_P, Key_Y, Key_Tab,
- Key_PageUp, Key_A, Key_O, Key_E, Key_U, Key_I,
- Key_PageDown, Key_Semicolon, Key_Q, Key_J, Key_K, Key_X, Key_LeftGui,
+ SYSTER, Key_A, Key_O, Key_E, Key_U, Key_I,
+ Key_RightGui, Key_Semicolon, Key_Q, Key_J, Key_K, Key_X, Key_LeftGui,
Key_LeftBracket, Key_Backspace, LSHIFT(Key_LeftBracket), LSHIFT(Key_9),
//Key_LeftControl, Key_Backspace, Key_LeftAlt, Key_LeftShift,
ShiftToLayer(FUNCTION),
@@ -96,7 +96,7 @@ KEYMAPS(
___, Key_F6, Key_F7, Key_F8, Key_F9, Key_F10, Key_F11,
Key_ScrollLock, Key_Home, Key_PageUp, Key_UpArrow, Key_PageDown, ___, Key_F12,
Key_End, Key_LeftArrow, Key_DownArrow, Key_RightArrow, ___, ___,
- SYSTER, Consumer_Mute, Consumer_VolumeDecrement, Consumer_VolumeIncrement, ___, Key_Backslash, Key_Pipe,
+ ___, Consumer_Mute, Consumer_VolumeDecrement, Consumer_VolumeIncrement, ___, Key_Backslash, Key_Pipe,
___, ___, ___, ___,
___),
@@ -334,7 +334,7 @@ void setup() {
kaleidoscope::plugin::Qukey(0, KeyAddr(0, 8), Key_RightControl),
kaleidoscope::plugin::Qukey(0, KeyAddr(2, 7), Key_LeftAlt),
kaleidoscope::plugin::Qukey(0, KeyAddr(2, 8), Key_RightAlt),
- kaleidoscope::plugin::Qukey(0, KeyAddr(2, 9), Key_RightGui));
+ kaleidoscope::plugin::Qukey(0, KeyAddr(2, 9), Key_LeftGui));
Qukeys.setOverlapThreshold(25);
IdleLEDs.setIdleTimeoutSeconds(300);