{"id":50723708,"url":"https://github.com/lmilojevicc/zmk-wireless-corne","last_synced_at":"2026-06-10T02:03:55.193Z","repository":{"id":276903124,"uuid":"930645447","full_name":"lmilojevicc/zmk-wireless-corne","owner":"lmilojevicc","description":"Personal ZMK config and keymaps for Corne","archived":false,"fork":false,"pushed_at":"2026-03-07T00:52:42.000Z","size":110,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-07T07:26:43.790Z","etag":null,"topics":["corne","zmk","zmk-config"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lmilojevicc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-11T01:08:08.000Z","updated_at":"2026-03-07T00:52:46.000Z","dependencies_parsed_at":"2025-02-11T04:23:56.372Z","dependency_job_id":"a3252404-9e36-42d9-ba52-c50c160e822f","html_url":"https://github.com/lmilojevicc/zmk-wireless-corne","commit_stats":null,"previous_names":["lmilojevicc/zmk-wireless-corne"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lmilojevicc/zmk-wireless-corne","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmilojevicc%2Fzmk-wireless-corne","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmilojevicc%2Fzmk-wireless-corne/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmilojevicc%2Fzmk-wireless-corne/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmilojevicc%2Fzmk-wireless-corne/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lmilojevicc","download_url":"https://codeload.github.com/lmilojevicc/zmk-wireless-corne/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmilojevicc%2Fzmk-wireless-corne/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34133406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["corne","zmk","zmk-config"],"created_at":"2026-06-10T02:03:54.582Z","updated_at":"2026-06-10T02:03:55.186Z","avatar_url":"https://github.com/lmilojevicc.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Corne ZMK Configuration\n\n\u003e [!WARNING] \n\u003e **This keyboard is not the same as [foostan's Corne](https://github.com/foostan/crkbd). It will not work with standard `corne` firmware.**\n\n## Setup Instructions\n\nThe easiest way to get started is by letting GitHub build the firmware for you.\n\n1. **Fork this Repository:** Click the \"Fork\" button at the top-right of this page.\n2. **Enable GitHub Actions:** In your newly forked repository, navigate to the \"Actions\" tab. If prompted, click the button to enable workflows.\n3. **Customize Your Keymap:** You can edit your keymap in a few ways:\n   - Directly edit the `config/corne.keymap` file.\n   - Use the [ZMK Studio](https://zmk.studio/) for live changes.\n   - Use the visual [Keymap Editor](https://nickcoutsos.github.io/keymap-editor/).\n4. **Commit \\\u0026 Download:** Once you commit your changes, the GitHub Action will automatically build your new firmware. You can download it from the \"Actions\" tab once the build is complete.\n\n## Keymap Diagram\n\n![Diagram of config/corne.keymap](keymap-drawer/corne.svg \"generated by @caksoylar's Keymap Drawer\")\n\n## Building Firmware With Dev Container (Recommended)\n\nMake sure you have `devcontainer` installed and available.\n\n```bash\ndevcontainer --version # 0.80.3\n```\n\n### Initialize Dev Container Environment\n\n```bash\ndevcontainer up --workspace-folder .\ndevcontainer exec --workspace-folder . /bin/bash\n```\n\n### Setup West\n\n```bash\n# 1. Initialize the West workspace using config's west.yml\nwest init -l config\n\n# 2. Download Zephyr and ZMK modules\nwest update\n\n# 3. Export CMake settings for Zephyr\nwest zephyr-export\n```\n\n### Build The Firmware Manually\n\n```bash\nwest build -s zmk/app -d build/left -b corne_left//zmk -- \\\n  -DSHIELD=\"nice_view_adapter nice_view_gem\"\n\nwest build -s zmk/app -d build/right -b corne_right//zmk -- \\\n  -DSHIELD=\"nice_view_adapter nice_view_gem\"\n```\n\n### Build The Firmware With Bash Script\n\n```bash\nchmod +x ./devcontainer-build.sh\n./devcontainer-build.sh\n```\n\n## Building Firmware Locally\n\n### Set-up local environment\n\n1. Create a new virtual environment:\n\n```bash\npython3 -m venv .venv\n```\n\n2. Activate the virtual environment:\n\n```bash\nsource .venv/bin/activate\n```\n\n3. Install west:\n\n```bash\npip install west\n```\n\n4. Initialize the application and update to fetch modules, including Zephyr:\n\n```bash\nwest init -l config\nwest update\n```\n\n5. Export a Zephyr CMake package. This allows CMake to automatically load boilerplate code required for building Zephyr applications.\n\n```bash\nwest zephyr-export\n```\n\n6. Install the additional dependencies found in Zephyr's requirements-base.txt:\n\n```bash\npip install -r zephyr/scripts/requirements-base.txt\n```\n\n7. Install the Zephyr SDK: Follow the official instructions to [install the Zephyr SDK](https://docs.zephyrproject.org/3.5.0/develop/getting_started/index.html#install-zephyr-sdk), which contains the toolchains needed to compile the firmware.\n\n### Building Firmware After Initial Setup\n\nOnce you've completed the initial configuration steps, you can easily build the firmware using the provided `build.sh` script.\n\n```\nchmod +x build.sh\n./build.sh\n```\n\n## Troubleshooting Common Issues\n\n### Missing packages\n\nDuring the build process, you might see an error about missing Python packages, such as `elftools` or Google `protobuf`.\n\n```bash\n         **********************************************************************\n         *** Could not import the Google protobuf Python libraries          ***\n         ***                                                                ***\n         *** Easiest solution is often to install the dependencies via pip: ***\n         ***    pip install protobuf grpcio-tools                           ***\n         **********************************************************************\n```\n\n1. Activate your Python virtual:\n\n   ```bash\n   source .venv/bin/activate\n   ```\n\n1. Install the required package:\n\n   ```bash\n   pip install pyelftools protobuf grpcio-tools\n   ```\n\n1. **Re-run** the build script. If the issue persists, try deactivating and reactivating the virtual environment (`deactivate` then `source .venv/bin/activate`).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmilojevicc%2Fzmk-wireless-corne","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flmilojevicc%2Fzmk-wireless-corne","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmilojevicc%2Fzmk-wireless-corne/lists"}