diff options
author | xyz <gky44px1999@gmail.com> | 2021-12-09 14:13:44 -0800 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-12-09 14:13:44 -0800 |
commit | c32a8feaabe532192843c6ddbd08f2bdf3a9ba84 (patch) | |
tree | 5ea546d0bbd934e129d25dccc9853aba45b18503 | |
parent | 888ca5b2f3ad2ca0ca7df5640345d5dc85b27fa3 (diff) |
surfingkey comment, fix user-overrides.js
-rw-r--r-- | .config/myconf/surfingkeys_config.js | 1 | ||||
-rw-r--r-- | .mozilla/firefox/xxxxxxxx.fly/user-overrides.js | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.config/myconf/surfingkeys_config.js b/.config/myconf/surfingkeys_config.js index c0a0ef20..43316ffa 100644 --- a/.config/myconf/surfingkeys_config.js +++ b/.config/myconf/surfingkeys_config.js @@ -12,6 +12,7 @@ //unmap('<Ctrl-j>'); map('<Ctrl-Alt-h>','<Ctrl-h>'); unmap('<Ctrl-h>'); +// ctrl-alt-s not working now (12/09/2021), not sure why, maybe arkenfox user.js problem? map('<Ctrl-Alt-s>','<Alt-s>'); unmap('<Alt-s>'); diff --git a/.mozilla/firefox/xxxxxxxx.fly/user-overrides.js b/.mozilla/firefox/xxxxxxxx.fly/user-overrides.js index 6cd94308..2cc24fb8 100644 --- a/.mozilla/firefox/xxxxxxxx.fly/user-overrides.js +++ b/.mozilla/firefox/xxxxxxxx.fly/user-overrides.js @@ -27,7 +27,8 @@ user_pref("extensions.webextensions.restrictedDomains", ""); user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); // let tree style tab background dark with arc-dark linux theme // i'm not using TST now, but it still might be useful for other extensions -user_pref("widget.content.allow-gtk-dark-theme", true); +// however, starting from around firefox 95, this makes some site show dark background with light theme fonts? so not using it now +//user_pref("widget.content.allow-gtk-dark-theme", true); // when refresh searx page, no window will pop up and ask for resend // https://www.reddit.com/r/firefox/comments/nnluzz/disable_to_display_this_page_firefox_must_send/gzyoia4?utm_source=share&utm_medium=web2x&context=3 user_pref("dom.confirm_repost.testing.always_accept", true); |