ahk/ctrl_f20_clipboardqr.ahk

9 lines
340 B
AutoHotkey
Raw Normal View History

2021-08-01 23:12:58 +00:00
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
^F20::
FileGetShortcut, D:\cmd\pythonw.lnk, exe
2021-08-23 02:14:59 +00:00
run %exe% D:\git\cmd\showqr.py !c
2021-08-01 23:12:58 +00:00
Return