diff options
author | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2018-10-22 12:35:09 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-10-22 12:35:09 -0700 |
commit | bf57587e6203e3bcabbc161c1d45b9a6cc7abfaa (patch) | |
tree | 1e1a74751b86e47e2b9c649e254d2299d6d9a78c /layouts/community | |
parent | 47dcda1087a2aa3bbb46d69c5cf682bf45650a8b (diff) |
Keyboard: Zlant refactor and Configurator support (#3678)
* Matrix/keymap refactor
White space and readability updates
* Configurator support
Added info.json file.
* Readme update
Markdown formatting
* Add support for ortho_4x12 keymaps
* Added planck_mit layout support
* Disable SWAP_HANDS_ENABLE for zlant:wanleg keymap
* Disable BACKLIGHT_ENABLE for zlant:bakingpy keymap
Diffstat (limited to 'layouts/community')
-rw-r--r-- | layouts/community/ortho_4x12/bakingpy/rules.mk | 6 | ||||
-rw-r--r-- | layouts/community/ortho_4x12/wanleg/rules.mk | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/layouts/community/ortho_4x12/bakingpy/rules.mk b/layouts/community/ortho_4x12/bakingpy/rules.mk index 0d568c401a..490ebbf779 100644 --- a/layouts/community/ortho_4x12/bakingpy/rules.mk +++ b/layouts/community/ortho_4x12/bakingpy/rules.mk @@ -3,4 +3,8 @@ ifeq ($(LAYOUTS_HAS_RGB),yes) RGBLIGHT_ENABLE = yes endif AUDIO_ENABLE = no -BACKLIGHT_ENABLE = yes +ifeq ($(strip $(KEYBOARD)), zlant) + BACKLIGHT_ENABLE = no +else + BACKLIGHT_ENABLE = yes +endif diff --git a/layouts/community/ortho_4x12/wanleg/rules.mk b/layouts/community/ortho_4x12/wanleg/rules.mk index 69f377a015..fa433a6b0d 100644 --- a/layouts/community/ortho_4x12/wanleg/rules.mk +++ b/layouts/community/ortho_4x12/wanleg/rules.mk @@ -7,4 +7,8 @@ endif ifeq ($(strip $(KEYBOARD)), 4x4) SWAP_HANDS_ENABLE = no +endif + +ifeq ($(strip $(KEYBOARD)), zlant) + SWAP_HANDS_ENABLE = no endif
\ No newline at end of file |