{"id":13569815,"url":"https://github.com/itenium-be/Mi-Ke","last_synced_at":"2025-04-04T06:31:16.701Z","repository":{"id":25099541,"uuid":"28520663","full_name":"itenium-be/Mi-Ke","owner":"itenium-be","description":"Collection of Autohotkey scripts to make daily life in Windows less dull","archived":false,"fork":false,"pushed_at":"2024-07-23T10:55:37.000Z","size":2680,"stargazers_count":19,"open_issues_count":23,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-11-05T02:35:54.691Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://itenium.be/Mi-Ke/","language":"AutoHotkey","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/itenium-be.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-12-26T20:39:24.000Z","updated_at":"2024-06-04T02:30:36.000Z","dependencies_parsed_at":"2024-11-05T02:42:35.076Z","dependency_job_id":null,"html_url":"https://github.com/itenium-be/Mi-Ke","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/itenium-be%2FMi-Ke","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itenium-be%2FMi-Ke/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itenium-be%2FMi-Ke/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itenium-be%2FMi-Ke/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itenium-be","download_url":"https://codeload.github.com/itenium-be/Mi-Ke/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247134405,"owners_count":20889396,"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":[],"created_at":"2024-08-01T14:00:44.570Z","updated_at":"2025-04-04T06:31:14.929Z","avatar_url":"https://github.com/itenium-be.png","language":"AutoHotkey","funding_links":[],"categories":["AutoHotkey"],"sub_categories":[],"readme":"Mi-Ke\n=====\nThis Mike is not exactly Mycroft Holmes but rather a collection of Autohotkey scripts.\n\nA few fancy ones:\n\n**Control+Win+Z**: Zips the entire folder, or just the selected files, in Windows Explorer.\n([windows-explorer-zip-directory](https://github.com/itenium-be/Mi-Ke/blob/master/scripts-windows-explorer/windows-explorer-zip-directory.ahk))  \n**Control+Win+Alt+D**: Minimize all windows on monitor of active Window. Press again to restore.\n([windows-min-max](https://github.com/itenium-be/Mi-Ke/blob/master/scripts-other/windows-min-max.ahk))  \n**Control+Alt+D**: Open Windows Explorer and select last downloaded file ([windows-explorer](https://github.com/itenium-be/Mi-Ke/blob/master/scripts-windows-explorer/windows-explorer.ahk))  \n\n# What\n\nA script running in the background (tray icon) with little productivity boosters.\n\n- Hotstrings to reduce amount of typing (atm -\u003e at the moment)\n- Shortcuts to start programs (win+o -\u003e open solitaire.exe)\n- Enhancements to programs (cmd, windows explorer, ...)\n- Random scripts to do something I often do (did?) manually\n- Dev tooling (encode/decode, prettify/uglify, convert, ...)\n\nSee the [Github Pages](https://itenium.be/Mi-Ke) for a listing of\nall shortcuts and their default bindings.  \nOr don't: the information on the site is pretty outdated.\n\n# Configuration\n\nSee [resources\\init\\_custom-example.yml](resources/init/_custom-example.yml) for how to configure a custom hotkey.\n\n\n# Install\n\n\n## From source\n\nRequires [Autohotkey_L](https://autohotkey.com/download).\n\nPowerShell:\n```ps\ngit clone https://github.com/itenium-be/Mi-Ke\ncd Mi-Ke\n\n# Start\n.\\mike.ahk\n```\n\nPersonal customization (optional):  \n```ps\n# Add some custom config \u0026 examples\n.\\init.ps1\n\n# If you do not want examples run the following instead\n.\\init.ps1 -bare\n```\n\n## Persist\n\nTo start Mi-Ke when Windows starts:\n\nPut a `mike.ahk.lnk` in `%APPDATA%\\Microsoft\\Windows\\Start Menu\\Programs\\Startup`.  \nIn the right click contextmenu of the Mi-Ke tray icon there is also an option to do this for you.\n\nMore step by step instructions can be found\nin the [official docs FAQ](https://www.autohotkey.com/docs/FAQ.htm#Startup)\n\n\n### Mi-Ke doesn't work in Visual Studio\n\nThe scripts aren't working only when Visual Studio (or any other app) is running as administrator.  \nThe solution would be to also start Mi-Ke as administrator when you want the scripts to be available\nin these applications.\n\nMore info:  \nhttps://stackoverflow.com/questions/1890351/why-is-visual-studio-catching-key-events-before-autohotkey\n\n\n# Known Issues\n\nBinding `AppsKey \u0026 X` (with x any character) breaks AppsKey in Cmder.\n\n\n# Tests\n\n- Are in `spec`\n- Need to end in `-tests.ahk`\n\nRun tests:  \n```ps1\n.\\tests.ps1\n```\n\nFramework:  \nhttps://github.com/itenium-be/Yunit\n\nDocs:  \nhttps://github.com/Uberi/Yunit/blob/master/doc/Main.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitenium-be%2FMi-Ke","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitenium-be%2FMi-Ke","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitenium-be%2FMi-Ke/lists"}