Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/draw-keymaps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Use the keymap-drawer ZMK user config workflow
# https://github.com/caksoylar/keymap-drawer#setting-up-an-automated-drawing-workflow
name: Draw ZMK keymaps
on:
workflow_dispatch: # can be triggered manually
push: # automatically run on changes to following paths
paths:
# - 'config/*.keymap'
# - 'config/*.dtsi'
# - 'config/*.json'
- 'config/keymap_drawer.config.yaml'
- '.github/workflows/draw-keymaps.yml'
- 'config/boards/*/*/*.keymap'

jobs:
draw:
uses: caksoylar/keymap-drawer/.github/workflows/draw-zmk.yml@main
with:
keymap_patterns: "config/boards/*/*/*.keymap" # path to the keymaps to parse
config_path: "config/keymap_drawer.config.yaml" # config file, ignored if not exists
output_folder: "keymap" # path to save produced SVGs # branch to use
amend_commit: true # amend generated files to commit that produces them
parse_args: "" # map of extra args to pass to `keymap parse`, e.g. "corne:'-l Def Lwr Rse' cradio:''"
draw_args: "" # map of extra args to pass to `keymap draw`, e.g. "corne:'-k corne_rotated' cradio:'-k paroxysm'"
fail_on_error: true
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ This repository contains a customized [ZMK](https://github.com/zmkfirmware/zmk)
| Left Peripheral | nice!nano v2 (nRF52840) |
| Right Peripheral | nice!nano v2 (nRF52840) |

## Keymap

![keyboard layout](./keymap/cradio.svg)

## Credits

- [Ferris Sweep](https://github.com/davidphilipbarr/Sweep) by David Barr.
Expand Down
Loading
Loading