-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6dcfe22
commit f0e85e8
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#SingleInstance Force | ||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||
|
||
$#n:: | ||
SetTitleMatchMode, RegEx | ||
DetectHiddenWindows, On | ||
setcontroldelay, -1 | ||
SetWinDelay, -1 | ||
; close any existing context menus (screws up wait, etc.) | ||
WinClose, ahk_class #32768 | ||
; open context menu for desktop, if icon at 0,0 (for some rason) change to safe coords | ||
controlclick, X0 Y0, ahk_class WorkerW,FolderView,RIGHT,,NA, ..* | ||
; wait, uses class of context menu | ||
WinWait, ahk_class #32768,,1 | ||
ControlSend ,,n, ahk_class #32768 ; context menu hotkey for next desktop | ||
return |