]> git.rmz.io Git - dotfiles.git/blobdiff - qutebrowser/config.py
qutebrowser: fake user agent for Slack
[dotfiles.git] / qutebrowser / config.py
index 1657b01614aa5d355573d88f7b1b9c842d3e48de..b5fd824aa7ec5d0398025b84e12dc3fea9a91a7a 100644 (file)
@@ -15,6 +15,8 @@ def in_terminal(cmd: list):
     """
     from os import getenv
     t = getenv('TERMINAL', 'xterm')
     """
     from os import getenv
     t = getenv('TERMINAL', 'xterm')
+    if t == "wezterm":
+        return [t, "start", "--always-new-process", "--"] + cmd
     return [t, '-e'] + cmd
 
 
     return [t, '-e'] + cmd
 
 
@@ -193,7 +195,7 @@ c.changelog_after_upgrade = 'patch'
 ##   - auto: Use the system-wide color scheme setting.
 ##   - light: Force a light theme.
 ##   - dark: Force a dark theme.
 ##   - auto: Use the system-wide color scheme setting.
 ##   - light: Force a light theme.
 ##   - dark: Force a dark theme.
-# c.colors.webpage.preferred_color_scheme = 'auto'
+c.colors.webpage.preferred_color_scheme = 'dark'
 
 ## Number of commands to save in the command history. 0: no history / -1:
 ## unlimited
 
 ## Number of commands to save in the command history. 0: no history / -1:
 ## unlimited
@@ -488,6 +490,7 @@ c.content.headers.accept_language = 'en-UK;q=1.0, en;q=0.9, de;q=0.7, fr;q=0.7,
 ## JavaScript requires a restart.
 ## Type: FormatString
 # c.content.headers.user_agent = 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version} {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}'
 ## JavaScript requires a restart.
 ## Type: FormatString
 # c.content.headers.user_agent = 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version} {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}'
+config.set('content.headers.user_agent', "'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36", '*://*.slack.com/*')
 
 ## Enable hyperlink auditing (`<a ping>`).
 ## Type: Bool
 
 ## Enable hyperlink auditing (`<a ping>`).
 ## Type: Bool
@@ -761,6 +764,7 @@ with config.pattern('*://calendar.google.com/*') as p:
 ## Type: Bool
 c.content.webgl = False
 config.set('content.webgl', True, '*://meet.google.com/*')
 ## Type: Bool
 c.content.webgl = False
 config.set('content.webgl', True, '*://meet.google.com/*')
+config.set('content.webgl', True, '*://*.robinpowered.com/*')
 
 ## Which interfaces to expose via WebRTC.
 ## Type: String
 
 ## Which interfaces to expose via WebRTC.
 ## Type: String
@@ -1450,7 +1454,8 @@ c.qt.args = ['proxy-pac-url=file://' + str(config.configdir / 'proxy.pac')]
 ## sessions from the sate file, if you want to not load any sessions,
 ## pass an empty list.
 ## Type: List of String
 ## sessions from the sate file, if you want to not load any sessions,
 ## pass an empty list.
 ## Type: List of String
-# c.session.startup_sessions = None
+# NOTE: I only want this with my sessions patch
+c.session.startup_sessions = ['default', 'work']
 
 ## Languages to use for spell checking. You can check for available
 ## languages and install dictionaries using scripts/dictcli.py. Run the
 
 ## Languages to use for spell checking. You can check for available
 ## languages and install dictionaries using scripts/dictcli.py. Run the
@@ -1815,7 +1820,8 @@ c.url.searchengines = {'DEFAULT':        'https://duckduckgo.com/?t=chakra&q={}'
                        'h':              'https://hoogle.haskell.org/?hoogle={}',
                        'fpp/slack':      'https://focalpointpositioning.slack.com/messages/{}',
                        'fpp/confluence': 'https://fppnt.atlassian.net/wiki/search?text={}',
                        'h':              'https://hoogle.haskell.org/?hoogle={}',
                        'fpp/slack':      'https://focalpointpositioning.slack.com/messages/{}',
                        'fpp/confluence': 'https://fppnt.atlassian.net/wiki/search?text={}',
-                       'evk':            'https://gitlab.com/search?&scope=issues&group_id=13301433&search={}',
+                       'evk':            'https://gitlab.com/search?scope=issues&group_id=13301433&search={}',
+                       'stm':            'https://gitlab.com/search?scope=issues&group_id=11101995&project_id=60665292&search={}',
                        'dev':            'https://devdocs.io/#q={}',
                        'phind':          'https://www.phind.com/search?q={}',
                       }
                        'dev':            'https://devdocs.io/#q={}',
                        'phind':          'https://www.phind.com/search?q={}',
                       }
@@ -1836,7 +1842,8 @@ c.url.searchengines = {'DEFAULT':        'https://duckduckgo.com/?t=chakra&q={}'
 ## Format to use for the window title. The same placeholders like for
 ## `tabs.title.format` are defined.
 ## Type: FormatString
 ## Format to use for the window title. The same placeholders like for
 ## `tabs.title.format` are defined.
 ## Type: FormatString
-# c.window.title_format = '{perc}{current_title}{title_sep}qutebrowser'
+# NOTE: I think [session] is from my changes on the branch
+# c.window.title_format = '[{session}] {perc}{current_title}{title_sep}qutebrowser'
 
 ## Set the main window background to transparent.  This allows having a
 ## transparent tab- or statusbar (might require a compositor such as
 
 ## Set the main window background to transparent.  This allows having a
 ## transparent tab- or statusbar (might require a compositor such as