Advertisement
Vibex

Vibex: AHK Titlebar Begone

Nov 29th, 2012
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;These are some more efficient scripts. This one is very hard on your computer.
  2. ;-Misc Scripts by Anonymous-
  3. ;http://pastebin.com/3eFU00b3 - Removes Window Titlebars + borders (only created windows/newly opened)
  4. ;http://pastebin.com/u99sNQdw - Removes ALL Window Titlebars + borders
  5. ;http://pastebin.com/0ZL5hBr2 - Removes ALL Window Titlebars + borders EXCEPT FIREFOX/NIGHTLY
  6. ;http://pastebin.com/dZWDEyCc - Updated version, easier to customize for removing borders and titlebars for processes of your choosing.
  7.  
  8.  
  9.  
  10. ;Lots of thanks to random anon on /g/ for helping me with this. (This was when I first got into AHK. I understand this fine now.)
  11. loop {
  12. WinGet, List ,List
  13. loop, %list%
  14. {
  15. this_id := List%A_Index%
  16. WinSet, Style, -0xC00000, ahk_id %this_id%
  17. }
  18. sleep 500
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement