diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea031d1..77e2971 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/AutoTrackR2/scripts/videorecord.ahk b/AutoTrackR2/scripts/videorecord.ahk new file mode 100644 index 0000000..11c5556 --- /dev/null +++ b/AutoTrackR2/scripts/videorecord.ahk @@ -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 \ No newline at end of file diff --git a/AutoTrackR2/scripts/visorwipe.ahk b/AutoTrackR2/scripts/visorwipe.ahk new file mode 100644 index 0000000..564b7f2 --- /dev/null +++ b/AutoTrackR2/scripts/visorwipe.ahk @@ -0,0 +1,2 @@ +; AutoHotkey v2 script to press Alt + X +Send("{Alt Down}x{Alt Up}") ; Simulate pressing Alt + X \ No newline at end of file