{"id":22724692,"url":"https://github.com/cschladetsch/incode","last_synced_at":"2026-01-11T02:15:06.085Z","repository":{"id":38417917,"uuid":"14065689","full_name":"cschladetsch/Incode","owner":"cschladetsch","description":"Keyboard shortcuts to move Mouse and Cursor without using mouse or cursor keys.","archived":false,"fork":false,"pushed_at":"2024-05-28T13:08:26.000Z","size":294,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-05T23:33:11.475Z","etag":null,"topics":["abbreviations","capslock-key","cursor","mouse","mouse-button"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cschladetsch.png","metadata":{"files":{"readme":"Readme.md","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}},"created_at":"2013-11-02T12:13:15.000Z","updated_at":"2024-05-28T13:08:30.000Z","dependencies_parsed_at":"2023-11-17T01:13:53.788Z","dependency_job_id":null,"html_url":"https://github.com/cschladetsch/Incode","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschladetsch%2FIncode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschladetsch%2FIncode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschladetsch%2FIncode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschladetsch%2FIncode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cschladetsch","download_url":"https://codeload.github.com/cschladetsch/Incode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246374087,"owners_count":20766841,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["abbreviations","capslock-key","cursor","mouse","mouse-button"],"created_at":"2024-12-10T15:07:40.178Z","updated_at":"2026-01-11T02:15:06.060Z","avatar_url":"https://github.com/cschladetsch.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# InCode ![Icon](Doc/Logo.png \"Incode Logo\")\n[![CodeFactor](https://www.codefactor.io/repository/github/cschladetsch/incode/badge)](https://www.codefactor.io/repository/github/cschladetsch/incode) [![License](https://img.shields.io/github/license/cschladetsch/incode.svg?label=License\u0026maxAge=86400)](./LICENSE) [![Release](https://img.shields.io/github/release/cschladetsch/incode.svg?label=Release\u0026maxAge=60)](https://github.com/cschladetsch/incode/releases/latest)\n\nCustom input system for keyboard and mouse for Windows.\n\nThis application allows the user to control the mouse and other systems such as cursor and scrolling using a minimal set of keys - without actually using the mouse. It also allows for the use of abbreviations. Yes, there are other tools that do this and better but hey.\n\n## Usage\nHold an `Interrupt` button - By default the Right-Control key - and then use the rest of the keyboard to send custom input.\n\n*NOTE* Use the provided `SharpKeys` binary to remap the CapsLock key to the Right-Control Key. The CapsLock key is an anacronism in any case, may as well put it to good use.\n\nFor instance, press and hold the `Interrupt` button, and:\n* use `WASD` to move the mouse cursor up down left right. Movement is passed through a customised filter to emulate the behavior of an Ibm ThinkPad clit button.  \n* `R` and `V` keys send scroll up and down, again with a custom filter and timings. \n* The `space bar` simulates the left mouse button\n* `G` the right mouse button.\n* You can also double-click. I think the threshold is 300ms.\n* Double-pressing the `Interrupt` key centers the cursor on the main monitor.\n* There is some customisation available via a simple GUI, but to change the keys the only current way is to just edit the code.\n\n\n## Installation\nJust build the Visual Studio solution. This is very much *not* a cross-platform app so I didn't bother with CMake.\n\n## Abbreviations\nEnter abbreviation mode with `Interrupt`-Q (typically Capslock-Q). Then you can insert any text as mapped in the config file.\n\nFor instance, my email address is `christian@schladetsch.com`. I end up typing that a *lot*. Now I can enter it with `Interrupt`-Qg.\n\nThe `g` is the abbreviation stored in the Json file. I've added a bunch of things I use a lot, like passwords etc. Obviously you'll have to make your own Config.json in the same folder as the IncodeWindow.exe executable.\n\nWhen you enter abbreviation mode, a popup appears showing all your abbreviations. Note that you need to still hold down the `Interrupt` key to complete the abbreviation.\n\n## Json Config\nThe configuration is stored in `Config.json`, in the same folder as the app.\n\nA typical config file would look like:\n\n```json\n{\n  \"Abbreviations\":\n  {\n    \"g\":  \"christian.schladetsch@gmail.com\",\n    \"v\": \"christian@schladetsch.com\",\n    \"p\":  \"04712341234\",\n    \"gp\": \"+61(0)37234524\",\n    \"cc\":  \"1234123412341234\",\n    \"p1\": \"password\",\n    \"p2\": \"hunter11\",\n    \"p3\": \"not-telling\",\n    \"ad\": \"29 Fuddle St, East Place, Somewhere, Country, 3002\"\n  },\n  \"Speed\": 250,\n  \"Accel\": 12,\n  \"ScrollScale\": 0.5,\n  \"ScrollAccel\": 1.15,\n  \"ScrollAmount\": 3\n}\n\n```\n\n## Bugs or Requests\nUse GitHub's Issues to raise any faults or feature requests.\n\nOtherwise, feel free to [contact me](mailto:christian@schladetsch.com).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcschladetsch%2Fincode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcschladetsch%2Fincode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcschladetsch%2Fincode/lists"}