{"id":13705372,"url":"https://github.com/denolfe/AutoHotkeyBoilerplate","last_synced_at":"2025-05-05T16:32:18.924Z","repository":{"id":34500656,"uuid":"38441421","full_name":"denolfe/AutoHotkeyBoilerplate","owner":"denolfe","description":"An AutoHotkey boilerplate to help jumpstart a script for personal productivity","archived":false,"fork":false,"pushed_at":"2021-04-02T19:29:24.000Z","size":60,"stargazers_count":52,"open_issues_count":1,"forks_count":10,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-10-28T19:34:32.721Z","etag":null,"topics":["autocorrect","autohotkey","boilerplate"],"latest_commit_sha":null,"homepage":null,"language":"AutoHotkey","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/denolfe.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}},"created_at":"2015-07-02T15:41:38.000Z","updated_at":"2024-09-08T18:14:43.000Z","dependencies_parsed_at":"2022-07-08T10:33:32.057Z","dependency_job_id":null,"html_url":"https://github.com/denolfe/AutoHotkeyBoilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denolfe%2FAutoHotkeyBoilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denolfe%2FAutoHotkeyBoilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denolfe%2FAutoHotkeyBoilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denolfe%2FAutoHotkeyBoilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/denolfe","download_url":"https://codeload.github.com/denolfe/AutoHotkeyBoilerplate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224455854,"owners_count":17314198,"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":["autocorrect","autohotkey","boilerplate"],"created_at":"2024-08-02T22:00:38.960Z","updated_at":"2024-11-13T13:30:25.903Z","avatar_url":"https://github.com/denolfe.png","language":"AutoHotkey","funding_links":[],"categories":["AutoHotkey"],"sub_categories":[],"readme":"# AutoHotkey Boilerplate\n\nA boilerplate to help jumpstart a script for personal productivity\n\n## Goal\n\n- Provide easy access to all the features of AutoHotkey\n- Understandable structure for future additions\n\n## Installation\n\nPrerequisite: Install [AutoHotkey](http://ahkscript.org/) from [ahkscript.org](http://ahkscript.org/)\n\nOptions:\n\n- `git clone https://github.com/denolfe/AutoHotkeyBoilerplate.git`\n- Download the repo and unzip\n- Fork to your own repo, then clone or download\n\n## Usage\n\n1. Edit `Settings.ini` as needed\n2. Run `Main.ahk`\n\n## Structure\n\n    .\n    |-- Main.ahk\n    |-- Settings.ini\n    |-- Scripts\\\n    |   |-- AppSpecific.ahk\n    |   |-- Functions.ahk\n    |   |-- HotStrings.ahk\n    |   `-- Hotkeys.ahk\n    |-- Lib\\\n    `-- Util\\\n\n## Customization\n\n### Hotkeys.ahk\n\nUniversal shortcuts\n\n```ahk\n; Ctrl+Alt+R to reload entire script\n^!r::Reload\n```\n\n[Hotkey Docs](http://ahkscript.org/docs/Hotkeys.htm)\n\n### Hotstrings.ahk\n\nAuto-expanding Hotstrings are stored here\n\n```ahk\n; Single Line\n::btw::by the way\n\n; Multi-Line\n::btw::\n    MsgBox You typed \"btw\".\nReturn\n```\n\n[Hotstrings Docs](http://ahkscript.org/docs/Hotstrings.htm)\n\n### Functions.ahk\n\nRe-usable functions, automatically loaded by Main.ahk\n\n```ahk\n Add(x, y)\n {\n     return x + y\n }\n ```\n\n [Function Docs](http://ahkscript.org/docs/Functions.htm)\n\n### AppSpecific.ahk\n\nThis file is organizing application specific shortcut or hotstrings. This is achieved using [#If](https://www.autohotkey.com/docs/commands/_If.htm) or [#IfWin directives](https://www.autohotkey.com/docs/commands/_IfWinActive.htm)\n\n```ahk\n; Control+Click selection in Notepad++ only\n#IfWinActive ahk_class Notepad++\n\t^LButton::\n\t\tSend {LButton 2}\n\t\tReturn\n#IfWinActive\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenolfe%2FAutoHotkeyBoilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdenolfe%2FAutoHotkeyBoilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenolfe%2FAutoHotkeyBoilerplate/lists"}