From d499e338abf35d9d2727e994cd0468a8f59cc6ee Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Thu, 10 Dec 2020 20:14:37 -0600 Subject: [PATCH] - Updated Firefox preferences hotkey for Win/Linux --- windows/kinto.ahk | 2 +- xkeysnail-config/kinto.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/kinto.ahk b/windows/kinto.ahk index 5727144..b779486 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -449,7 +449,7 @@ GroupAdd, intellij, ahk_exe idea64.exe !^j::send {Ctrl Down}{Shift Down}j{Shift Up}{Ctrl Up} ; Open preferences #IfWinActive ahk_exe firefox.exe - ^,::send {Alt Down}{Shift Down}t{Shift Up}{Alt Up}o{Enter} + ^,::send, {Ctrl Down}t{Ctrl Up}about:preferences{Enter} #If #IfWinActive ahk_exe chrome.exe ^,::send {Alt Down}e{Alt Up}s{Enter} diff --git a/xkeysnail-config/kinto.py b/xkeysnail-config/kinto.py index 254839b..62a0e6d 100644 --- a/xkeysnail-config/kinto.py +++ b/xkeysnail-config/kinto.py @@ -213,7 +213,7 @@ define_keymap(re.compile(browserStr, re.IGNORECASE),{ # Open preferences in browsers define_keymap(re.compile("Firefox", re.IGNORECASE),{ - K("C-comma"): [K("M-t"), K("o"),K("Enter")], + K("C-comma"): [K("C-T"),K("a"),K("b"),K("o"),K("u"),K("t"),K(":"),K("p"),K("r"),K("e"),K("f"),K("e"),K("r"),K("e"),K("n"),K("c"),K("e"),K("s"),K("Enter")], }) define_keymap(re.compile(chromeStr, re.IGNORECASE),{ K("C-comma"): [K("M-e"), K("s"),K("Enter")],