{"id":13512353,"url":"https://github.com/yingDev/Tickeys","last_synced_at":"2025-03-30T22:32:36.912Z","repository":{"id":30151574,"uuid":"33701795","full_name":"yingDev/Tickeys","owner":"yingDev","description":"Instant audio feedback for typing. macOS version. (Rust) ","archived":false,"fork":false,"pushed_at":"2023-04-23T21:15:17.000Z","size":7274,"stargazers_count":1448,"open_issues_count":51,"forks_count":112,"subscribers_count":34,"default_branch":"master","last_synced_at":"2025-03-25T09:05:54.372Z","etag":null,"topics":["macos","rust"],"latest_commit_sha":null,"homepage":"http://yingdev.com/projects/tickeys","language":"Rust","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/yingDev.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","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}},"created_at":"2015-04-10T01:32:36.000Z","updated_at":"2025-03-14T12:21:51.000Z","dependencies_parsed_at":"2024-01-02T22:03:36.712Z","dependency_job_id":null,"html_url":"https://github.com/yingDev/Tickeys","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yingDev%2FTickeys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yingDev%2FTickeys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yingDev%2FTickeys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yingDev%2FTickeys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yingDev","download_url":"https://codeload.github.com/yingDev/Tickeys/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246390875,"owners_count":20769476,"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":["macos","rust"],"created_at":"2024-08-01T03:01:46.391Z","updated_at":"2025-03-30T22:32:31.902Z","avatar_url":"https://github.com/yingDev.png","language":"Rust","readme":"# Tickeys\n![Tickeys Icon](https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/icon.png)\n\n\u003cimg src=\"https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/Tickeys%20new.png\" width=\"128\" height=\"128\" /\u003e\n\u003cbr\u003e(An alternative icon designed by [@WillStark](https://github.com/WillStark) )\n\nInstant audio feedback for typing. For macOS. \n\nA demo for learning [Rust](https://www.rust-lang.org).\n\n### Other versions:\n- Linux: [Tickeys-linux](https://github.com/BillBillBillBill/Tickeys-linux)\n- Windows: [Download](https://www.yingdev.com/Content/Projects/Tickeys_Win/Release/1.1.1/Tickeys1.1.1.rar)\n\n# Install\n  - brew cask\n```sh\nbrew cask install tickeys \u0026\u0026 open /Applications/Tickeys.app\n```\n  - or download the [dmg](https://github.com/yingDev/Tickeys/releases/download/0.5.0/Tickeys-0.5.0-yosemite.dmg)\n\n# Screenshots\n\n\u003cimg src=\"https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/1.png\" alt='sound effects' width=400/\u003e\n\u003cbr/\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/2.png\" alt='black/white list' width=400/\u003e\n\u003cbr/\u003e\u003cbr/\u003e\n\u003ca href='https://www.youtube.com/watch?v=XeqA-LU5IWg' target='_blank'\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/yingDev/Tickeys/master/.readme_images/video_thumb.png\" alt='sound effects' width=400/\u003e\n\u003c/a\u003e\n\n# Add custom schemes\n0. locate the `data` directory in Finder: `Tickeys.app/Content/Resources/data/`\n\n1. copy \u0026 paste an effect directory and rename the copy, eg.`drum` -\u003e `myDrum`\n\n2. open `schemes.json` and edit it by copy \u0026 paste the corresponding scheme entry; change the `name`  and `display_name` as needed. eg:\n\t```json \n\t,{\n\t\t\"name\": \"myDrum\",\n\t\t\"display_name\": \"My Drum\",\n\t\t\"files\": [\"1.wav\", \"2.wav\", \"3.wav\", \"4.wav\", \"space.wav\", \"backspace.wav\", \"enter.wav\"],\n\t\t\"non_unique_count\": 4, \n\t\t\"key_audio_map\":{\"36\": 6, \"49\": 4, \"51\": 5}\n\t},\n\t```\n\t- note:\n\t \t* \"name\": value must be the same as your directory name\n\t \t* \"files\": sound file list \n\t \t* \"non_unique_count\": first N items in `files` are auto mapped to keys\n\t  \t* \"key_audio_map\": mappings of keyCode to sound index in \"files\". eg. 36 == `enter`\n\t \n3. add/replace your `.wav` files; update \u0026 save the json file\n\n4. re-launch Tickeys. (\"qaz123\")\n\n## Deps （for development)\n* alut\n* openssl\n```sh\nbrew install freealut openssl\n```\n\n## License\n* MIT\n","funding_links":[],"categories":["Rust","Applications","Uncategorized","Mac"],"sub_categories":["Audio","Uncategorized","🎵 Audio (36)","调试"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FyingDev%2FTickeys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FyingDev%2FTickeys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FyingDev%2FTickeys/lists"}