This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
James Young a03aa301de
Remove Full Bootmagic (#13846)
* disambiguate Bootmagic rules in keymaps

The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic.

This commit edits the files to specify that full Bootmagic is intended.

* remove BOOTMAGIC_ENABLE=full setting

* unify commented BOOTMAGIC_ENABLE rules in keyboards

Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no       # Virtual DIP switch configuration;g' {} +
```

* remove commented Bootmagic rules from keymap/user level

Command:

```
find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} +
```

* update keyboard BOOTMAGIC_ENABLE rule formatting

Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later).

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
```

* update keyboards' BOOTMAGIC_ENABLE settings

Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Command:

```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' +
```

* update keymap/user BOOTMAGIC_ENABLE settings

Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
```

* remove and replace inline comments in keyboards and keymap/user files

Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`.

Commands:

```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1     # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1      # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1       # Enable Bootmagic Lite;g' '{}' +
```

* rename improperly named makefiles

Some files intended to be used as makefiles had improper names causing them to not be used as intended when building.

This commit corrects the filenames of the affected files.

* update renamed file with new rule formatting

* update QMK's template files

Updates QMK's `rules.mk` templates to use the new inline comment.

* update QMK Docs

- remove documentation of full Bootmagic
- update links to Bootmagic Lite doc
- add doc for Magic Keycodes

* rules.mk patch for coarse/ixora and coarse/vinta
2021-08-06 23:59:56 -07:00
..
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-04 08:54:12 +10:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00
2021-08-06 23:59:56 -07:00

Included Keyboards

QMK runs on a diverse range of keyboards. Some of these keyboards are well maintained and see constant community contributions, while others are part of the repository for historical reasons.

Official QMK Keyboards

Ortholinear Keyboards - Jack Humbert

What makes OLKB keyboards shine is a combo of lean aesthetics, compact size, and killer tactile feel. These are available through olkb.com as well as through Massdrop from time to time, as easy to assemble kits.

  • Planck — A 40% DIY powerhouse of customizability and modification capability. It's a lean, mean, typing machine.
  • Preonic — Like the Planck, but bigger. 50%.
  • Atomic — Imagine the size of the Planck. Now imagine the size of the Preonic. Now imagine bigger. That is the Atomic. A 60% keyboard.

Clueboard - Zach White

Designed and built in Felton, CA, Clueboards keyboard emphasize quality and locally sourced components, available on clueboard.co

  • Clueboard — The 66% custom keyboard.
  • Cluecard — A small board to help you hack on QMK.
  • Cluepad — A mechanical numpad with QMK superpowers.

ErgoDox EZ and Planck EZ - ZSA Technology Labs

ZSA Technology Labs maintains its own fork of QMK which feeds its configurator, for stability and legal purposes. The ZSA boards are:

  • ErgoDox EZ — A powerful split mechanical keyboard.
  • Planck EZ — A 40% DIY powerhouse of customizability and modification capability. It's a lean, mean, typing machine, which ships fully assembled with a two-year warranty.

Community-supported QMK Keyboards

These keyboards are part of the QMK repository, but their manufacturers are not official maintainers of the repository.

  • 9key — A 9-key minipad sold by Bishop Keyboards.
  • Alps64 — A 60% keyboard for Alps keyswitches.
  • AMJ60 — DIY/Assembled compact 60% keyboard.
  • Arrow Pad — A custom creation by IBNobody.
  • Atreus — Made by Technomancy.
  • Bantam44 — It is a 44-key 40% staggered keyboard.
  • DataHand — DataHand keyboard converted to use a Teensy board.
  • Ergodox Infinity - Ergonomic Split Keyboard by Input Club.
  • GH60 — A 60% Geekhack community-driven project.
  • GON NerD — Korean custom 60% PCB
  • Happy Hacking Keyboard — The Happy Hacking keyboard can be hacked with a custom controller to run QMK.
  • Infinity 60% - — Compact community keyboard by Input Club.
  • JD45 — Another Geekhack community project, designed by jdcarpe.
  • JJ40 — ps2avrGB based ortholinear sold by KPrepublic
  • JJ50 — A compact 50% (5x12) ortholinear keyboard sold by KPrepublic.
  • KBD75 — A 75% keyboard made by made by KBDFans.
  • KC60 — A programmable Chinese-made keyboard, lost in the mists of time.
  • Kinesis Advantage — Contoured ergonomic keyboard by Kinesis Computer Ergonomics.
  • KMAC — Korean custom keyboard.
  • The Kitten Paw — A replacement controller (2016 revision) for the Filco Majestouch by Bathroom Epiphanies.
  • Lets Split - Split ortholinear 40% keyboard.
  • Phantom — A tenkeyless kit by Teel, also from Geekhack.
  • Retro Refit — Another creation by IBNobody.
  • S60-x — DIY compact keyboard designed by VinnyCordeiro for Sentraq.
  • Satan — A GH60 variant.
  • SixKeyBoard — A 6-key keyboard made by TechKeys.
  • TheVan 44 — A 44-key staggered keybard by Evangs.
  • WhiteFox — A 65% keyboard designed as a partnership by matt3o, Massdrop and Input Club
  • Vision Division — Full Size / Split Linear Keyboard by IBNobody.
  • XD004 — 1x4 macro keyboard sold by KPrepublic.
  • XD75 — 15x5 ortholinear keyboard by XIUDI.
  • YMDK NP21 — ps2avrGB based number pad (numpad) sold by YMDK on Aliexpress.