repos / dotfiles

my dotfiles

commit
4a87220
parent
816808e
author
Eric Bower
date
2024-12-10 23:08:52 -0500 EST
chore: rearrange
8 files changed,  +15, -158
R dot_qutebrowser/bookmarks/urls => dot_config/qutebrowser/bookmarks/urls
+0, -0
A dot_config/qutebrowser/config.py
+15, -0
 1@@ -0,0 +1,15 @@
 2+config.load_autoconfig(True)
 3+config.set("url.searchengines", {
 4+    "DEFAULT": "https://kagi.com/search?q={}",
 5+})
 6+config.set("url.start_pages", [
 7+    "https://bower.sh"
 8+])
 9+config.set("url.default_page", "https://bower.sh")
10+config.set("colors.webpage.preferred_color_scheme", "dark")
11+# config.set("content.user_stylesheets", ["./theme.css"])
12+# config.set("content.user_stylesheets", ["./hn.css"])
13+config.set("content.user_stylesheets", ["solarized-dark-all-sites.css"])
14+config.set("colors.webpage.bg", "black")
15+config.set("tabs.show", "never")
16+config.set("tabs.tabs_are_windows", True)
R dot_qutebrowser/hn.css => dot_config/qutebrowser/hn.css
+0, -0
R dot_qutebrowser/quickmarks => dot_config/qutebrowser/quickmarks
+0, -0
R dot_qutebrowser/solarized-dark-all-sites.css => dot_config/qutebrowser/solarized-dark-all-sites.css
+0, -0
R dot_qutebrowser/theme.css => dot_config/qutebrowser/theme.css
+0, -0
D dot_qutebrowser/config.py
+0, -156
  1@@ -1,156 +0,0 @@
  2-# Autogenerated config.py
  3-#
  4-# NOTE: config.py is intended for advanced users who are comfortable
  5-# with manually migrating the config file on qutebrowser upgrades. If
  6-# you prefer, you can also configure qutebrowser using the
  7-# :set/:bind/:config-* commands without having to write a config.py
  8-# file.
  9-#
 10-# Documentation:
 11-#   qute://help/configuring.html
 12-#   qute://help/settings.html
 13-
 14-# Change the argument to True to still load settings configured via autoconfig.yml
 15-config.load_autoconfig(False)
 16-config.set("url.searchengines", {
 17-    "DEFAULT": "https://kagi.com/search?q={}",
 18-    "brave": "https://search.brave.com/search?q={}",
 19-})
 20-config.set("url.start_pages", [
 21-    "https://erock.lists.sh/bookmark-web"
 22-])
 23-config.set("url.default_page", "https://erock.lists.sh/bookmark-web")
 24-config.set("colors.webpage.preferred_color_scheme", "dark")
 25-# config.set("content.user_stylesheets", ["./theme.css"])
 26-# config.set("content.user_stylesheets", ["./hn.css"])
 27-config.set("content.user_stylesheets", ["./solarized-dark-all-sites.css"])
 28-config.set("colors.webpage.bg", "black")
 29-config.set("tabs.show", "multiple")
 30-config.set("fonts.default_family", "FireCode")
 31-config.set("fonts.default_size", "12pt")
 32-# config.set("colors.webpage.darkmode.enabled", True)
 33-
 34-# Which cookies to accept. With QtWebEngine, this setting also controls
 35-# other features with tracking capabilities similar to those of cookies;
 36-# including IndexedDB, DOM storage, filesystem API, service workers, and
 37-# AppCache. Note that with QtWebKit, only `all` and `never` are
 38-# supported as per-domain values. Setting `no-3rdparty` or `no-
 39-# unknown-3rdparty` per-domain on QtWebKit will have the same effect as
 40-# `all`. If this setting is used with URL patterns, the pattern gets
 41-# applied to the origin/first party URL of the page making the request,
 42-# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped
 43-# from URLs, so URL patterns using paths will not match. With
 44-# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so
 45-# you will typically need to set this setting for `example.com` when the
 46-# cookie is set on `somesubdomain.example.com` for it to work properly.
 47-# To debug issues with this setting, start qutebrowser with `--debug
 48-# --logfilter network --debug-flag log-cookies` which will show all
 49-# cookies being set.
 50-# Type: String
 51-# Valid values:
 52-#   - all: Accept all cookies.
 53-#   - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail.
 54-#   - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty.
 55-#   - never: Don't accept cookies at all.
 56-config.set('content.cookies.accept', 'all', 'chrome-devtools://*')
 57-
 58-# Which cookies to accept. With QtWebEngine, this setting also controls
 59-# other features with tracking capabilities similar to those of cookies;
 60-# including IndexedDB, DOM storage, filesystem API, service workers, and
 61-# AppCache. Note that with QtWebKit, only `all` and `never` are
 62-# supported as per-domain values. Setting `no-3rdparty` or `no-
 63-# unknown-3rdparty` per-domain on QtWebKit will have the same effect as
 64-# `all`. If this setting is used with URL patterns, the pattern gets
 65-# applied to the origin/first party URL of the page making the request,
 66-# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped
 67-# from URLs, so URL patterns using paths will not match. With
 68-# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so
 69-# you will typically need to set this setting for `example.com` when the
 70-# cookie is set on `somesubdomain.example.com` for it to work properly.
 71-# To debug issues with this setting, start qutebrowser with `--debug
 72-# --logfilter network --debug-flag log-cookies` which will show all
 73-# cookies being set.
 74-# Type: String
 75-# Valid values:
 76-#   - all: Accept all cookies.
 77-#   - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail.
 78-#   - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty.
 79-#   - never: Don't accept cookies at all.
 80-config.set('content.cookies.accept', 'all', 'devtools://*')
 81-
 82-# Value to send in the `Accept-Language` header. Note that the value
 83-# read from JavaScript is always the global value.
 84-# Type: String
 85-config.set('content.headers.accept_language', '', 'https://matchmaker.krunker.io/*')
 86-
 87-# User agent to send.  The following placeholders are defined:  *
 88-# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
 89-# The underlying WebKit version (set to a fixed value   with
 90-# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
 91-# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
 92-# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
 93-# QtWebEngine. * `{upstream_browser_version}`: The corresponding
 94-# Safari/Chrome version. * `{qutebrowser_version}`: The currently
 95-# running qutebrowser version.  The default value is equal to the
 96-# unchanged user agent of QtWebKit/QtWebEngine.  Note that the value
 97-# read from JavaScript is always the global value. With QtWebEngine
 98-# between 5.12 and 5.14 (inclusive), changing the value exposed to
 99-# JavaScript requires a restart.
100-# Type: FormatString
101-config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}', 'https://web.whatsapp.com/')
102-
103-# User agent to send.  The following placeholders are defined:  *
104-# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
105-# The underlying WebKit version (set to a fixed value   with
106-# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
107-# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
108-# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
109-# QtWebEngine. * `{upstream_browser_version}`: The corresponding
110-# Safari/Chrome version. * `{qutebrowser_version}`: The currently
111-# running qutebrowser version.  The default value is equal to the
112-# unchanged user agent of QtWebKit/QtWebEngine.  Note that the value
113-# read from JavaScript is always the global value. With QtWebEngine
114-# between 5.12 and 5.14 (inclusive), changing the value exposed to
115-# JavaScript requires a restart.
116-# Type: FormatString
117-config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:90.0) Gecko/20100101 Firefox/90.0', 'https://accounts.google.com/*')
118-
119-# User agent to send.  The following placeholders are defined:  *
120-# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
121-# The underlying WebKit version (set to a fixed value   with
122-# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
123-# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
124-# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
125-# QtWebEngine. * `{upstream_browser_version}`: The corresponding
126-# Safari/Chrome version. * `{qutebrowser_version}`: The currently
127-# running qutebrowser version.  The default value is equal to the
128-# unchanged user agent of QtWebKit/QtWebEngine.  Note that the value
129-# read from JavaScript is always the global value. With QtWebEngine
130-# between 5.12 and 5.14 (inclusive), changing the value exposed to
131-# JavaScript requires a restart.
132-# Type: FormatString
133-config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*')
134-
135-# Load images automatically in web pages.
136-# Type: Bool
137-config.set('content.images', True, 'chrome-devtools://*')
138-
139-# Load images automatically in web pages.
140-# Type: Bool
141-config.set('content.images', True, 'devtools://*')
142-
143-# Enable JavaScript.
144-# Type: Bool
145-config.set('content.javascript.enabled', True, 'chrome-devtools://*')
146-
147-# Enable JavaScript.
148-# Type: Bool
149-config.set('content.javascript.enabled', True, 'devtools://*')
150-
151-# Enable JavaScript.
152-# Type: Bool
153-config.set('content.javascript.enabled', True, 'chrome://*/*')
154-
155-# Enable JavaScript.
156-# Type: Bool
157-config.set('content.javascript.enabled', True, 'qute://*/*')
M dotfiles.sh
+0, -2
 1@@ -10,7 +10,6 @@ TRACKED_FILES=(
 2     dot_ssh/config
 3     dot_mblaze/mblaze
 4     dot/msmtprc
 5-    dot_qutebrowser/
 6     dot/npmrc
 7 )
 8 
 9@@ -24,7 +23,6 @@ TRACKED_LOCATIONS=(
10     ~/.ssh/config
11     ~/.mblaze/profile
12     ~/.msmtprc
13-    ~/.qutebrowser/
14     ~/.npmrc
15 )
16