Skip to content

Instantly share code, notes, and snippets.

@iwconfig
Last active September 25, 2018 22:02
Show Gist options
  • Select an option

  • Save iwconfig/e78b6d4c7a8b3890182b47081cc8a19d to your computer and use it in GitHub Desktop.

Select an option

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.
;
; 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