Advertisement
hu6

[ahk] Hide Windows Taskbar the Right Way

hu6
May 29th, 2014
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Hide completely task bar
  2. ; Paste this line to your autohotkey then press <Windows> + H to toggle your taskbar
  3. ; Credit to the original author in autohotkey forum :)
  4. LWin & t::
  5. if toggle := !toggle
  6. {
  7.   WinHide ahk_class Shell_TrayWnd
  8.   WinHide Start ahk_class Button
  9. }
  10. else
  11. {
  12.   WinShow ahk_class Shell_TrayWnd
  13.   WinShow Start ahk_class Button
  14. }
  15. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement