Skip to content

NickCrew/ahk-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoHotKey Scripts

AHK Documentation

Script Organization

AHK scripts are organized into subfolders based on the key types or intended use. Each .ahk file should have a well-defined purpose. For greater flexibility profiles should be used to group scripts together using #include.

Profiles

*_Profile.ahk files can be used to organize scripts in a logical group using #include statements.

For example, you may want a profile associated with a certain machine or keyboard.

Simple Keybinding File Naming

A descriptive naming convention is used when possible.

<special behavior>_<modifiers>_<normal keys>_<action>.ahk

Example: Tap_LControl_To_Escape : Left control is treated as escape when tapped by itself.

Startup

A single startup.ahk should be placed in the "%AppData%\Microsoft\Windows\Start Menu\Programs\Startup\" folder.

Using only #include statements, select profiles and scripts from this repo that you wish to launch on startup.

This file is also created when executing init.bat.