You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.4 KiB

  1. # narze's layout
  2. ## Notes
  3. - SuperDuper mode for Ergodox is still under development, since combo keys does not work very well on Ergodox firmware.
  4. Now it is using multiple layers as a workaround. Actual implementation using combos are on my Planck layout.
  5. ## Key features
  6. - Qwerty + [Colemak](https://colemak.com) layouts, and you can type Qwerty on software-level Colemak as well. Very useful for gaming or when your friend wanna type something but don't use Colemak.
  7. - [(S)uper (D)uper Mode](/users/narze/readme.md)
  8. - Mouse keys with Z
  9. ## Build instructions
  10. If your environment is ready to build with `make`, don't use docker since it takes 5m+ to compile.
  11. Use the instructions in Ergodox Infinity's readme.
  12. #### Left side (Docker)
  13. ```
  14. cd /path/to/qmk_firmware
  15. util/docker_build.sh ergodox_infinity:narze
  16. avr-objcopy -Iihex -Obinary .build/ergodox_infinity_narze.hex .build/ergodox_infinity_narze_left.bin
  17. dfu-util --device 1c11:b007 -D .build/ergodox_infinity_narze_left.bin
  18. ```
  19. #### Right side (Docker)
  20. You have to override `usb_args` in order to pass `MASTER=right` to docker using provided build script.
  21. ```
  22. cd /path/to/qmk_firmware
  23. usb_args="-e MASTER=right" util/docker_build.sh ergodox_infinity:narze
  24. avr-objcopy -Iihex -Obinary .build/ergodox_infinity_narze.hex .build/ergodox_infinity_narze_right.bin
  25. dfu-util --device 1c11:b007 -D .build/ergodox_infinity_narze_right.bin
  26. ```