Upload files to "/"

This commit is contained in:
Efi Jovanovic 2024-05-21 13:12:24 +02:00
parent b80b20633f
commit 4c46e8736d

View file

@ -0,0 +1,19 @@
#Requires AutoHotkey v2.0
; Define the hotkey that you would like to use, example here is the Pause key
Pause::
{
; Replace all instances of ArmCord with the window title of your custom client
; Check if the "ArmCord" window exists and is active
if WinExist("ArmCord")
{
; Activate the "ArmCord" window
WinActivate
; Send Ctrl+Shift+D
Send "^+d"
}
else
{
; Optionally, show a message if the window is not found
MsgBox "ArmCord window not found!"
}
}