diff options
-rw-r--r-- | quantum/keymap.h | 1 | ||||
-rw-r--r-- | readme.md | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/quantum/keymap.h b/quantum/keymap.h index 98ddfd0c5..4b2192cb2 100644 --- a/quantum/keymap.h +++ b/quantum/keymap.h | |||
@@ -191,6 +191,7 @@ enum quantum_keycodes { | |||
191 | #define HYPR(kc) (kc | QK_LCTL | QK_LSFT | QK_LALT | QK_LGUI) | 191 | #define HYPR(kc) (kc | QK_LCTL | QK_LSFT | QK_LALT | QK_LGUI) |
192 | #define MEH(kc) (kc | QK_LCTL | QK_LSFT | QK_LALT) | 192 | #define MEH(kc) (kc | QK_LCTL | QK_LSFT | QK_LALT) |
193 | #define LCAG(kc) (kc | QK_LCTL | QK_LALT | QK_LGUI) | 193 | #define LCAG(kc) (kc | QK_LCTL | QK_LALT | QK_LGUI) |
194 | #define ALTG(kc) (kc | QK_RCTL | QK_RALT) | ||
194 | 195 | ||
195 | #define MOD_HYPR 0xf | 196 | #define MOD_HYPR 0xf |
196 | #define MOD_MEH 0x7 | 197 | #define MOD_MEH 0x7 |
@@ -140,6 +140,9 @@ If this is a bit complex for you, Docker might be the turn-key solution you need | |||
140 | 140 | ||
141 | docker run -e keymap=gwen -e keyboard=ergodox --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware | 141 | docker run -e keymap=gwen -e keyboard=ergodox --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware |
142 | 142 | ||
143 | # On windows docker seems to have issue with VOLUME tag in Dockerfile, and $('pwd') won't print a windows compliant path, use full path instead like this | ||
144 | docker run -e keymap=default -e keyboard=ergobop --rm -v D:/Users/Sacapuces/Documents/Repositories/qmk:/qmk:rw edasque/qmk_firmware | ||
145 | |||
143 | ``` | 146 | ``` |
144 | 147 | ||
145 | This will compile the targetted keyboard/keymap and leave it in your QMK directory for you to flash. | 148 | This will compile the targetted keyboard/keymap and leave it in your QMK directory for you to flash. |