Add all qutebrowser config files.
This commit is contained in:
parent
c1f43386ae
commit
f83803c938
5 changed files with 224 additions and 0 deletions
11
.config/qutebrowser/greasemonkey/darkmode-disable.js
Normal file
11
.config/qutebrowser/greasemonkey/darkmode-disable.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
// ==UserScript==
|
||||
// @name DarkMode Disable
|
||||
// @match https://monkeytype.com/*
|
||||
// @match https://nc.cronyakatsuki.xyz/*
|
||||
// @match https://company-mode.github.io/*
|
||||
// ==/UserScript==
|
||||
|
||||
const meta = document.createElement("meta");
|
||||
meta.name = "color-scheme";
|
||||
meta.content = "dark light";
|
||||
document.head.appendChild(meta);
|
Loading…
Add table
Add a link
Reference in a new issue