Last active
October 12, 2025 00:10
-
-
Save aviaryan/5418603 to your computer and use it in GitHub Desktop.
Revisions
-
aviaryan revised this gist
Jul 1, 2013 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,5 @@ EverythingPath = ;specify the path here #IfWinActive ahk_class CabinetWClass { F6:: @@ -9,10 +8,6 @@ GoSub, trayMenu return } GetFolder() { WinGetClass,var,A -
aviaryan revised this gist
Jul 1, 2013 . 1 changed file with 27 additions and 28 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,39 +1,38 @@ EverythingPath = ;specify the path here GoSub, trayMenu #IfWinActive ahk_class CabinetWClass { F6:: folder := GetFolder() run, %EverythingPath% -path "%folder%" return } trayMenu: Menu, Tray, Tip, %programName% return GetFolder() { WinGetClass,var,A If var in CabinetWClass,ExplorerWClass,Progman { IfEqual,var,Progman v := A_Desktop else { winGetText,Fullpath,A loop,parse,Fullpath,`r`n { IfInString,A_LoopField,:\ { StringGetPos,pos,A_Loopfield,:\,L Stringtrimleft,v,A_loopfield,(pos - 1) break } } } return, v } } -
aviaryan created this gist
Apr 19, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ programName = Everything Integration by Avi Aryan EverythingPath = GoSub, trayMenu #IfWinActive ahk_class CabinetWClass { F6:: folder := GetFolder() run, %EverythingPath% -path "%folder%" return } trayMenu: Menu, Tray, Tip, %programName% return GetFolder() { WinGetClass,var,A If var in CabinetWClass,ExplorerWClass,Progman { IfEqual,var,Progman v := A_Desktop else { winGetText,Fullpath,A loop,parse,Fullpath,`r`n { IfInString,A_LoopField,:\ { StringGetPos,pos,A_Loopfield,:\,L Stringtrimleft,v,A_loopfield,(pos - 1) break } } } return, v } }