Last active
October 29, 2023 13:15
-
-
Save CanYouJustWorkPlease/0884a964e3a4f85f21aff18b79c3fea7 to your computer and use it in GitHub Desktop.
Revisions
-
CanYouJustWorkPlease revised this gist
Oct 29, 2023 . No changes.There are no files selected for viewing
-
CanYouJustWorkPlease created this gist
Nov 30, 2020 .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,28 @@ toggle = 0 #MaxThreadsPerHotkey 2 #NoEnv #MaxHotkeysPerInterval 99000000 #HotkeyInterval 99000000 #KeyHistory 0 ListLines Off Process, Priority, , A SetBatchLines, -1 SetKeyDelay, -1, -1 SetDefaultMouseSpeed, 0 SetWinDelay, -1 SetControlDelay, -1 #If WinActive("ahk_class EVERYTHING ahk_exe Everything.exe") && !MouseIsOverControl("SysListView321") WheelUp::Send, {Up 5} WheelDown::Send, {Down 5} #If WinActive("ahk_class CabinetWClass ahk_exe explorer.exe") && !MouseIsOverControl("DirectUIHWND3") && !MouseIsOverControl("RICHEDIT50W1") WheelUp::Send, {Up 5} WheelDown::Send, {Down 5} MouseIsOverControl(refCtrl) { MouseGetPos,,,, ctrlName return ctrlName = refCtrl }