Created
March 2, 2018 04:34
-
-
Save jerrylususu/d45eb4606d8aed2857127da09efcf9c3 to your computer and use it in GitHub Desktop.
A small autohotkey script that numbers your taskbar icons, make Win+N switch easier.
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
Loop | |
{ | |
Sleep, 100 | |
if(GetKeyState("LWin")){ | |
Gui +LastFound +AlwaysOnTop -Caption +ToolWindow +E0x20 ; +ToolWindow avoids a taskbar button and an alt-tab menu item. | |
Gui, Margin, 1, 1 | |
Gui, Font, s22, Verdana ; Set a large font size (32-point). | |
Gui, Add, Text, cBlue,1 2 3 4 5 6 7 8 9 0 ; XX & YY serve to auto-size the window. | |
WinSet, TransColor, White 150 | |
Gui, Show, x75 y980 NoActivate | |
} | |
else{ | |
Gui, Hide | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 7: Font Setting
Line 8: Text Setting
Line 10: Position Setting
Do try multiple times to find the one that suits you best!