mirror of
https://github.com/BubbaGumpShrump/AutoTrackR2.git
synced 2025-05-05 01:55:31 +00:00
Added autohotkey scripts to artifact
This commit is contained in:
parent
bd8bbfb365
commit
a09a99c064
3 changed files with 11 additions and 0 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -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:
|
||||
|
|
2
AutoTrackR2/scripts/videorecord.ahk
Normal file
2
AutoTrackR2/scripts/videorecord.ahk
Normal 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
|
2
AutoTrackR2/scripts/visorwipe.ahk
Normal file
2
AutoTrackR2/scripts/visorwipe.ahk
Normal file
|
@ -0,0 +1,2 @@
|
|||
; AutoHotkey v2 script to press Alt + X
|
||||
Send("{Alt Down}x{Alt Up}") ; Simulate pressing Alt + X
|
Loading…
Add table
Add a link
Reference in a new issue