>>92184678
you could use an ahk script for that, tried to write one:
#Persistent
CoordMode, Mouse, Screen
SetTimer, WatchCursor, 100
WatchCursor:
MouseGetPos, xpos, ypos
if(xpos = 0 && ypos = 0) {
send {LWin down}{Tab}{LWin up}
sleep 1000
return
}
it works but i'd be aware of CPU usage.