Added autohotkey scripts to artifact

This commit is contained in:
Heavy Bob 2025-04-06 00:06:04 +11:00
parent bd8bbfb365
commit a09a99c064
3 changed files with 11 additions and 0 deletions
.github/workflows
AutoTrackR2/scripts

View file

@ -49,6 +49,13 @@ jobs:
exit 1
}
- name: Copy AutoHotkey scripts
run: |
# Create scripts directory in artifacts
mkdir artifacts\scripts
# Copy AutoHotkey scripts
Copy-Item "AutoTrackR2\scripts\*.ahk" -Destination "artifacts\scripts\" -Force
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:

View file

@ -0,0 +1,2 @@
; AutoHotkey v2 script to press Win + Alt + G
Send("{LWin Down}{Alt Down}g{Alt Up}{LWin Up}") ; Simulate pressing Win + Alt + G

View file

@ -0,0 +1,2 @@
; AutoHotkey v2 script to press Alt + X
Send("{Alt Down}x{Alt Up}") ; Simulate pressing Alt + X