diff options
| author | 2025-09-15 23:36:09 -0700 | |
|---|---|---|
| committer | 2025-09-15 23:36:09 -0700 | |
| commit | a4d1af333580bb220ac8349c304ad6578d0961b7 (patch) | |
| tree | 39fbd63478ebf6b20b966f3264876374806f847e | |
| parent | 8a51fa2ed8a3824b9ee062e9ad282b4a7daeb3ee (diff) | |
| download | my-keymaps-a4d1af333580bb220ac8349c304ad6578d0961b7.tar.gz my-keymaps-a4d1af333580bb220ac8349c304ad6578d0961b7.zip | |
Replace README.md with README.org
I'm an Emacs and org-mode user. This is comfortable for me.
| -rw-r--r-- | README.md | 59 | ||||
| -rw-r--r-- | README.org | 47 |
2 files changed, 47 insertions, 59 deletions
diff --git a/README.md b/README.md deleted file mode 100644 index 2520899..0000000 --- a/README.md +++ /dev/null @@ -1,59 +0,0 @@ -# QMK Userspace - -This is a template repository which allows for an external set of QMK keymaps to be defined and compiled. This is useful for users who want to maintain their own keymaps without having to fork the main QMK repository. - -## Howto configure your build targets - -1. Run the normal `qmk setup` procedure if you haven't already done so -- see [QMK Docs](https://docs.qmk.fm/#/newbs) for details. -1. Fork this repository -1. Clone your fork to your local machine -1. Enable userspace in QMK config using `qmk config user.overlay_dir="$(realpath qmk_userspace)"` -1. Add a new keymap for your board using `qmk new-keymap` - * This will create a new keymap in the `keyboards` directory, in the same location that would normally be used in the main QMK repository. For example, if you wanted to add a keymap for the Planck, it will be created in `keyboards/planck/keymaps/<your keymap name>` - * You can also create a new keymap using `qmk new-keymap -kb <your_keyboard> -km <your_keymap>` - * Alternatively, add your keymap manually by placing it in the location specified above. - * `layouts/<layout name>/<your keymap name>/keymap.*` is also supported if you prefer the layout system -1. Add your keymap(s) to the build by running `qmk userspace-add -kb <your_keyboard> -km <your_keymap>` - * This will automatically update your `qmk.json` file - * Corresponding `qmk userspace-remove -kb <your_keyboard> -km <your_keymap>` will delete it - * Listing the build targets can be done with `qmk userspace-list` -1. Commit your changes - -## Howto build with GitHub - -1. In the GitHub Actions tab, enable workflows -1. Push your changes above to your forked GitHub repository -1. Look at the GitHub Actions for a new actions run -1. Wait for the actions run to complete -1. Inspect the Releases tab on your repository for the latest firmware build - -## Howto build locally - -1. Run the normal `qmk setup` procedure if you haven't already done so -- see [QMK Docs](https://docs.qmk.fm/#/newbs) for details. -1. Fork this repository -1. Clone your fork to your local machine -1. `cd` into this repository's clone directory -1. Set global userspace path: `qmk config user.overlay_dir="$(realpath .)"` -- you MUST be located in the cloned userspace location for this to work correctly - * This will be automatically detected if you've `cd`ed into your userspace repository, but the above makes your userspace available regardless of your shell location. -1. Compile normally: `qmk compile -kb your_keyboard -km your_keymap` or `make your_keyboard:your_keymap` - -Alternatively, if you configured your build targets above, you can use `qmk userspace-compile` to build all of your userspace targets at once. - -## Extra info - -If you wish to point GitHub actions to a different repository, a different branch, or even a different keymap name, you can modify `.github/workflows/build_binaries.yml` to suit your needs. - -To override the `build` job, you can change the following parameters to use a different QMK repository or branch: -``` - with: - qmk_repo: qmk/qmk_firmware - qmk_ref: master -``` - -If you wish to manually manage `qmk_firmware` using git within the userspace repository, you can add `qmk_firmware` as a submodule in the userspace directory instead. GitHub Actions will automatically use the submodule at the pinned revision if it exists, otherwise it will use the default latest revision of `qmk_firmware` from the main repository. - -This can also be used to control which fork is used, though only upstream `qmk_firmware` will have support for external userspace until other manufacturers update their forks. - -1. (First time only) `git submodule add https://github.com/qmk/qmk_firmware.git` -1. (To update) `git submodule update --init --recursive` -1. Commit your changes to your userspace repository diff --git a/README.org b/README.org new file mode 100644 index 0000000..4e8c31d --- /dev/null +++ b/README.org @@ -0,0 +1,47 @@ +#+title: My Keymaps +#+link: qmk https://qmk.fm + +This is my repository of keyboard firmwares. I also have a repository of keyboard layouts defined in software. + +* Ergodox EZ + +This layout uses [[qmk]] firmware for its layout. To use it do the following: + +- Install the qmk utility. (on Archlinux =sudo pacman -S qmk=) +- Once installed, run =qmk setup= to make sure the =~/qmk_firmware= directory is created. +- Set up the overlay directory so this keymap can be included: =qmk config user.overlay_dir=/PATH/TO/THIS/REPO=. +- Compile the keymap: =qmk compile -kb ergodox_ez -km ryuk=. +- Flash the keymap: =qmk flash -kb ergodox_ez -km ryuk=. + +* Keyboardio Atreus + +This layout uses [[qmk]] firmware for its layout. To use it do the following: + +- Install the qmk utility. (on Archlinux =sudo pacman -S qmk=) +- Once installed, run =qmk setup= to make sure the =~/qmk_firmware= directory is created. +- Set up the overlay directory so this keymap can be included: =qmk config user.overlay_dir=/PATH/TO/THIS/REPO=. +- Compile the keymap: =qmk compile -kb keyboardio/atreus -km ryuk-atreus=. +- Flash the keymap: =qmk flash -kb keyboardio/atreus -km ryuk-atreus=. + +* ZSA Voyager + Navigator + +This layout uses a custom version of [[qmk]] firmware developed by ZSA for their devices. They say they'll contribute their changes to the QMK Firmware project, but until that time I need to use this fork instead. To use it do the following: + +- Install the qmk utility. (on Archlinux =sudo pacman -S qmk=) +- Once installed, run =qmk setup= to make sure the =~/qmk_firmware= directory is created. +- Go into the =~/qmk_firmware= directory: =cd ~/qmk_firmware=. +- Add the ZSA repository as a remote: =git remote add zsa https://github.com/zsa/qmk_firmware.git=. +- Fetch the contents of the remote: =git fetch zsa=. +- Once complete, checkout the main branch: =git checkout zsafirmware25 zsa/firmware25=. +- Set up the overlay directory so this keymap can be included: =qmk config user.overlay_dir=/PATH/TO/THIS/REPO=. +- Compile the keymap: =qmk compile -kb zsa/voyager -km ryuk=. +- Flash the keymap: =qmk flash -kb zsa/voyager -km ryuk=. + +* Cyboard Dactyl + +This layout uses [[https://get.vial.today/][Vial]], which is built on top of [[qmk]], with added keyboards and some other changes. To use it: + +- Install Vial (on Archlinux: =yay -S vial-appimage=). +- Run it (=Vial=). +- Plug in your keyboard. +- Any changes that are made in the layout using Vial are immediately stored on the keyboard. |
