]> git.rmz.io Git - dotfiles.git/blobdiff - qutebrowser/config.py
qutebrowser: add phind search engine
[dotfiles.git] / qutebrowser / config.py
index 5a091a58a1eb3202119ce6bcdd9cbf51c0cb807c..f7e0accac45452eed034c21701af938e3f2aa426 100644 (file)
@@ -1,3 +1,4 @@
+# noqa: D100
 ## Autogenerated config.py
 ##
 ## NOTE: config.py is intended for advanced users who are comfortable
 ##   qute://help/configuring.html
 ##   qute://help/settings.html
 
+from qutebrowser.config.configfiles import ConfigAPI
+from qutebrowser.config.config import ConfigContainer
+
+c: ConfigContainer = c      # noqa: F821 pylint: disable=E0602,C0103
+config: ConfigAPI = config  # noqa: F821 pylint: disable=E0602,C0103
+
 def in_terminal(cmd: list):
     """Wraps cmd to be run in the default TERMINAL, as set by environment.
 
@@ -39,7 +46,10 @@ try:
             message.info("Redirecting to " + url.toString())
             info.redirect(url)
 
-    interceptor.register(intercept)
+    #FIXME: trying this disabled for a bit to test if qb crashes less
+    #2022-08-16 enabling it again (and off again)
+    # yeah crashed immediately
+    # interceptor.register(intercept)
 except ImportError:
     pass
 
@@ -220,6 +230,7 @@ c.changelog_after_upgrade = 'patch'
 ## this list show up in the completion window under the Filesystem
 ## category when the command line contains `:open` but no argument.
 ## Type: List of String
+# TODO:
 # c.completion.favorite_paths = []
 
 ## Height (in pixels or as percentage of the window) of the completion.
@@ -776,7 +787,8 @@ with config.pattern('*://calendar.google.com/*') as p:
 
 ## Enable WebGL.
 ## Type: Bool
-# c.content.webgl = True
+c.content.webgl = False
+config.set('content.webgl', True, '*://meet.google.com/*')
 
 ## Which interfaces to expose via WebRTC.
 ## Type: String
@@ -1083,6 +1095,7 @@ c.hints.scatter = False
 ## CSS selectors used to determine which elements on a page should have
 ## hints.
 ## Type: Dict
+# TODO: reduce hints on some websites like reddit
 c.hints.selectors = {'all': ['a', 'area', 'textarea', 'select',
                              'input:not([type="hidden"])', 'button', 'frame',
                              'iframe', 'img', 'link', 'summary',
@@ -1293,6 +1306,7 @@ c.qt.args = ['proxy-pac-url=file://' + str(config.configdir / 'proxy.pac')]
 ##   - always: Always use low-end device mode.
 ##   - auto: Decide automatically (uses low-end mode with < 1 GB available RAM).
 ##   - never: Never use low-end device mode.
+# TODO: maybe never?
 # c.qt.chromium.low_end_device_mode = 'auto'
 
 ## Which Chromium process model to use. Alternative process models use
@@ -1804,6 +1818,7 @@ c.url.searchengines = {'DEFAULT':        'https://duckduckgo.com/?t=chakra&q={}'
                        'fpp/confluence': 'https://fppnt.atlassian.net/wiki/search?text={}',
                        'evk':            'https://gitlab.com/search?&scope=issues&group_id=13301433&search={}',
                        'dev':            'https://devdocs.io/#q={}',
+                       'phind':          'https://www.phind.com/search?q={}',
                       }
 
 ## Page(s) to open at the start.