feat(desktop): add qutebrowser config

This commit is contained in:
Lucas Barbieri 2024-07-19 10:15:37 -03:00
parent ab849c03c0
commit 6a818a2f7e
3 changed files with 1389 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# If a config.py file exists, this file is ignored unless it's explicitly loaded
# via config.load_autoconfig(). For more information, see:
# https://github.com/qutebrowser/qutebrowser/blob/main/doc/help/configuring.asciidoc#loading-autoconfigyml
# DO NOT edit this file by hand, qutebrowser will overwrite it.
# Instead, create a config.py - see :help for details.
config_version: 2
settings:
auto_save.session:
global: true
content.notifications.enabled:
https://www.youtube.com: false
content.user_stylesheets:
global: null
tabs.background:
global: true
tabs.favicons.scale:
global: 1.3
tabs.show:
global: always

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,22 @@
// ==UserScript==
// @name Dark Reader (Unofficial)
// @icon https://darkreader.org/images/darkreader-icon-256x256.png
// @namespace DarkReader
// @description Inverts the brightness of pages to reduce eye strain
// @version 4.7.15
// @author https://github.com/darkreader/darkreader#contributors
// @homepageURL https://darkreader.org/ | https://github.com/darkreader/darkreader
// @run-at document-end
// @grant none
// @include http*
// @require https://cdn.jsdelivr.net/npm/darkreader/darkreader.min.js
// @noframes
// ==/UserScript==
DarkReader.enable({
darkSchemeBackgroundColor: "#002b36",
darkSchemeTextColor: "#93a1a1",
brightness: 100,
contrast: 100,
sepia: 0,
});