24 lines
345 B
AutoHotkey
24 lines
345 B
AutoHotkey
|
^!t::Run "\Users\user\Documents\cmder\Cmder.exe"
|
||
|
#o:: Run "explorer.exe"
|
||
|
#b:: Run "path to executable file"
|
||
|
|
||
|
#p:: SendInput {PrintScreen}
|
||
|
|
||
|
|
||
|
#j:: Send {Volume_Up}
|
||
|
#k:: Send {Volume_Down}
|
||
|
|
||
|
#m:: Send {Volume_Mute}
|
||
|
|
||
|
|
||
|
#q::
|
||
|
SendInput {Alt down}
|
||
|
SendInput {F4}
|
||
|
SendInput {Alt up}
|
||
|
Return
|
||
|
|
||
|
#h::
|
||
|
SendInput {Alt down}
|
||
|
SendInput {Space}
|
||
|
SendInput {n}
|
||
|
Return
|