Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;These are some more efficient scripts. This one is very hard on your computer.
- ;-Misc Scripts by Anonymous-
- ;http://pastebin.com/3eFU00b3 - Removes Window Titlebars + borders (only created windows/newly opened)
- ;http://pastebin.com/u99sNQdw - Removes ALL Window Titlebars + borders
- ;http://pastebin.com/0ZL5hBr2 - Removes ALL Window Titlebars + borders EXCEPT FIREFOX/NIGHTLY
- ;http://pastebin.com/dZWDEyCc - Updated version, easier to customize for removing borders and titlebars for processes of your choosing.
- ;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.)
- loop {
- WinGet, List ,List
- loop, %list%
- {
- this_id := List%A_Index%
- WinSet, Style, -0xC00000, ahk_id %this_id%
- }
- sleep 500
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement