Files
winconfig/configs/autohotkey/OpenWt.ahk
2023-04-18 18:10:52 +02:00

17 lines
283 B
AutoHotkey

#Requires AutoHotkey v2.0
#NoTrayIcon
#Include Lib.ahk
;Mit Strg, Alt + P wird der aktuell Ordner im Terminal geöffnet.
^!p::
{
HotIfWinActive "ahk_class CabinetWClass"
{
WinID := WinGetID("ahk_class CabinetWClass")
Path := GetPath(WinID)
Run 'wt -d ' Path
}
Return
}