feat(laptop): add qutebrowser
This commit is contained in:
parent
f13093f61a
commit
12a0fd30f7
@ -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
|
1347
laptop/configs/qutebrowser/.config/qutebrowser/config.py
Normal file
1347
laptop/configs/qutebrowser/.config/qutebrowser/config.py
Normal file
File diff suppressed because it is too large
Load Diff
@ -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,
|
||||
});
|
Loading…
Reference in New Issue
Block a user