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.

39 lines
1.8 KiB

  1. # gBoards Monorepo
  2. Ever wanted to do some crazy stuff with combos or onboard steno? Here's a big repo for you to include into your
  3. keymaps. You may need to do some configuration on your part, for the documentation hit up [docs.gboards.ca](http://docs.gboards.ca/)
  4. ## Building
  5. You can find all of my keyboards under the k/ folder. Make with
  6. `make gboards/k/gergoplex:default:flash` or similar
  7. ## Configuration
  8. Dictionaries are layered ontop of each other at compile time, you specify these in dicts.def and combos.def respectively.
  9. This system allows the easy integration of other users combos and a simple way to break out combos by functionality.
  10. If you have a cool dictionary, please submit a PR against the respective directory!
  11. ## Combos
  12. This is a set of dicts that templates macros ontop of QMK. Use this for augmenting your current setup with
  13. multi-chords! You can browse the available combo lists in combos/
  14. ## Engine
  15. This is the onboard chording engine for all sorts of fun shenanigans. Be aware that this currently is a bit of a QMK
  16. replacement focused on pure chording. Take a look at the configuration in keyboards/ginny for ideas, all these dicts
  17. are stored over in dicts/
  18. ## Installation
  19. You will need to add the following bits to your rules.mk, refer to keyboards/ginny for a working example
  20. `VPATH += keyboards/gboards/`
  21. And if you're using the chording engine, this as well.
  22. `SRC += g/engine.c `
  23. For combos, add `#include "g/keymap_combos.h"` to keymap.c to compile your combos.def into your keymap
  24. For the chording engine, add `#include "g/keymap_engine.h"` to keymap.c compile your dicts.def into your keymap. If you
  25. don't have a config_engine.h file for your keyboard, you will need to create it. (Once again, look at keyboards/ginny/
  26. for a example of how to do this.