Skip to content

Commit

Permalink
Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMatteson committed Jun 14, 2018
1 parent 6dcfe22 commit f0e85e8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions NextWindowsDesktop.ahk
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

0 comments on commit f0e85e8

Please sign in to comment.