Skip to content

Instantly share code, notes, and snippets.

@GeneralTesler
Last active April 7, 2019 03:00
Show Gist options
  • Save GeneralTesler/e3ea3a64849a8810fe3beb26a4d25cd3 to your computer and use it in GitHub Desktop.
Save GeneralTesler/e3ea3a64849a8810fe3beb26a4d25cd3 to your computer and use it in GitHub Desktop.
AHK Config for Ducky 60%
;Arrow keys
RCtrl::Right
RWin::Down
RShift::Up
RAlt::Left
;Fn+F10 Fn+F11 Fn+F12
SC044::Send {Media_Prev}
SC057::Send {Media_Play_Pause}
SC058::Send {Media_Next}
;Fn+O
SC045::Send {PrintScreen}
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2019-04-05T18:34:24.17732</Date>
<Author><!--Name Here--></Author>
<URI>\Launch AHK Script</URI>
</RegistrationInfo>
<Triggers>
<LogonTrigger>
<Enabled>true</Enabled>
</LogonTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>S-1-5-21-2431950177-105484869-1868114359-1001</UserId>
<LogonType>InteractiveToken</LogonType>
<RunLevel>LeastPrivilege</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>false</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT72H</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>"C:\Program Files\AutoHotkey\AutoHotkey.exe"</Command>
<Arguments>"D:\Documents\ducky.ahk"</Arguments>
</Exec>
</Actions>
</Task>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment