Skip to content

Instantly share code, notes, and snippets.

@jerrylususu
Created March 2, 2018 04:34
Show Gist options
  • Save jerrylususu/d45eb4606d8aed2857127da09efcf9c3 to your computer and use it in GitHub Desktop.
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.
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
}
}
@jerrylususu
Copy link
Author

Line 7: Font Setting
Line 8: Text Setting
Line 10: Position Setting
Do try multiple times to find the one that suits you best!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment