Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spences10/autohotkey
https://github.com/spences10/autohotkey
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/spences10/autohotkey
- Owner: spences10
- Created: 2021-10-09T14:34:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-10T10:24:57.000Z (about 3 years ago)
- Last Synced: 2024-08-03T22:15:04.684Z (3 months ago)
- Language: AutoHotkey
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - spences10/autohotkey - (AutoHotkey)
README
# AutoHotkey Scripts
This is my list of scripts for AutoHotKey I use
I have created a shortcut for this file and added it to my startup
folder. You can open yours from the run dialogue (Win+r) and adding
in:```bash
shell:startup
```Or on Windows 11 I've used the following:
```
%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup
```## Key combinations
Because of the limitations of Loupedeck for adding key combinations
that don't use a modifier and the limitations of Autohotkey not being
able to use more than two modifiers I'm a bit limited on how to use
them.Here's some examples of how to do key combinations:
```ahk
; key combinationsNumpad0 & Numpad1::MsgBox You pressed Numpad1 while holding down Numpad0.
Numpad0 & Numpad2::Run NotepadNumpad0::Send {Numpad0} ; This means the numpad can be used with combos 👆
```