Last active
September 25, 2018 22:02
-
-
Save iwconfig/e78b6d4c7a8b3890182b47081cc8a19d to your computer and use it in GitHub Desktop.
Select and clear the address bar in firefox when using New Tab Override or the like. Change "My Custom New Tab - Mozilla Firefox" so it matches yours (without the quotes). There's a minor lag and I'm guessing we can't do anything about it. If this is not the case, please feel free to contribute.
This file contains hidden or 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
| ; | |
| ; Change "My Custom New Tab - Mozilla Firefox" so it matches yours (without the quotes) | |
| ; | |
| #NoEnv | |
| #SingleInstance force | |
| SendMode Input | |
| while 1 { | |
| WinWaitActive, Agenda View - Mozilla Firefox ahk_class MozillaWindowClass | |
| { | |
| ctrl := GetKeyState("Ctrl") | |
| if %ctrl% | |
| Send, {Ctrl up} | |
| Send, {F6}{del} | |
| } | |
| Send, %asdf%{Enter} | |
| if %ctrl% | |
| Send, {Ctrl down} | |
| WinSetTitle, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment