{"id":22771488,"url":"https://github.com/pawel-parma/remap-keys","last_synced_at":"2026-02-14T05:32:56.005Z","repository":{"id":242245653,"uuid":"809064877","full_name":"Pawel-Parma/remap-keys","owner":"Pawel-Parma","description":"Remapping keyboard keys using AutoHotkey","archived":false,"fork":false,"pushed_at":"2025-03-23T21:35:12.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-21T09:42:15.677Z","etag":null,"topics":["ahk","ahk-script","ahkscript","keybindings","keyboard","keyboard-layout","remapping-keyboards","remapping-keys"],"latest_commit_sha":null,"homepage":"","language":"AutoHotkey","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Pawel-Parma.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-06-01T15:31:19.000Z","updated_at":"2025-03-23T21:35:15.000Z","dependencies_parsed_at":"2025-02-05T13:51:05.037Z","dependency_job_id":"9786eb0a-7537-44e6-ba0c-b596f69d6c84","html_url":"https://github.com/Pawel-Parma/remap-keys","commit_stats":null,"previous_names":["pawel-parma/remap-keys"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Pawel-Parma/remap-keys","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pawel-Parma%2Fremap-keys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pawel-Parma%2Fremap-keys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pawel-Parma%2Fremap-keys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pawel-Parma%2Fremap-keys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pawel-Parma","download_url":"https://codeload.github.com/Pawel-Parma/remap-keys/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pawel-Parma%2Fremap-keys/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29438467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T05:24:35.651Z","status":"ssl_error","status_checked_at":"2026-02-14T05:24:34.830Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ahk","ahk-script","ahkscript","keybindings","keyboard","keyboard-layout","remapping-keyboards","remapping-keys"],"created_at":"2024-12-11T16:13:58.117Z","updated_at":"2026-02-14T05:32:55.991Z","avatar_url":"https://github.com/Pawel-Parma.png","language":"AutoHotkey","funding_links":[],"categories":[],"sub_categories":[],"readme":"= RemapKeys\n\nRemapKeys allows you to remap your keyboard keys. +\nThe default mapping \"mirrors\" the 1-0, q-p, a-l and z-m keys to reach the entire keyboard with one hand.\n\nIt consists of two main parts: a script written in AutoHotkey (`remap.ahk`) and a Python script (`main.py`).\n\n== Using remap.ahk\n\nAutoHotkey (v1.1) script that remaps your keyboard keys according to a predefined mapping.\n\nTo use it:\n\n1. Make sure you have AutoHotkey v1.1 installed. If not, you can download it from https://www.autohotkey.com/[here].\n2. Double-click on the `remap.ahk` file to run the script.\n3. Use the key combination Ctrl + Alt + Shift to toggle the key remapping on and off\n\nTips:\n\n - You can add the script to your startup folder.\n - Change the key combination.\n\n== Using main.py\n\nA Python script that allows you to generate your own key mappings.\n\nTo use it:\n\n1. Make sure you have Python installed. If not, you can download it from https://www.python.org/downloads/[here].\n2. Open the `main.py` file in a text editor.\n3. Modify the `mapping` dictionary to define your own key mappings. For example \"1\": \"0\" - remap 1 to 0.\n4. Ensure `sort_values` has all the keys from the `mapping` dictionary in the order you want them to be sorted.\n5. Run the script with the command `python main.py`. It will print the AutoHotkey code for the new mappings.\n6. Copy the output and paste it into the `remap.ahk` file below the `mapping := Object()` in the `; Mapping` section.\n\n----\n**Note:** +\nYou have to use the AutoHotkey's notation of keys.\n----\n\nCurrent mapping dictionary:\n\n[source,python]\n----\nmapping = {\n    \"``\": \"{Backspace}\",\n    \"F1\": \"{Enter}\",\n\n    \"1\": \"0\",  \"q\": \"p\",  \"a\": \"l\",  \"z\": \"m\",\n    \"2\": \"9\",  \"w\": \"o\",  \"s\": \"k\",  \"x\": \"n\",\n    \"3\": \"8\",  \"e\": \"i\",  \"d\": \"j\",  \"c\": \"b\",\n    \"4\": \"7\",  \"r\": \"u\",  \"f\": \"h\",  \"v\": \"v\",\n    \"5\": \"6\",  \"t\": \"y\",  \"g\": \"g\",  \"b\": \"c\",\n    \"6\": \"5\",  \"y\": \"t\",  \"h\": \"f\",  \"n\": \"x\",\n    \"7\": \"4\",  \"u\": \"r\",  \"j\": \"d\",  \"m\": \"z\",\n    \"8\": \"3\",  \"i\": \"e\",  \"k\": \"s\",\n    \"9\": \"2\",  \"o\": \"w\",  \"l\": \"a\",\n    \"0\": \"1\",  \"p\": \"q\",\n}\n----\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpawel-parma%2Fremap-keys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpawel-parma%2Fremap-keys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpawel-parma%2Fremap-keys/lists"}