📝 Added entire config directory for backup purposes

This commit is contained in:
z3rOR0ne 2022-11-03 00:09:22 -07:00
parent 4b38e59bb6
commit 9b946e2d14
11091 changed files with 1440953 additions and 0 deletions

View file

@ -0,0 +1,32 @@
(function () {
"use strict";
if (
document.documentElement instanceof HTMLHtmlElement &&
matchMedia("(prefers-color-scheme: dark)").matches &&
!document.querySelector(".darkreader--fallback")
) {
const css =
'html, body, body :not(iframe):not(div[style^="position:absolute;top:0;left:-"]) { background-color: #181a1b !important; border-color: #776e62 !important; color: #e8e6e3 !important; } html, body { opacity: 1 !important; transition: none !important; }';
const fallback = document.createElement("style");
fallback.classList.add("darkreader");
fallback.classList.add("darkreader--fallback");
fallback.media = "screen";
fallback.textContent = css;
if (document.head) {
document.head.append(fallback);
} else {
const root = document.documentElement;
root.append(fallback);
const observer = new MutationObserver(() => {
if (document.head) {
observer.disconnect();
if (fallback.isConnected) {
document.head.append(fallback);
}
}
});
observer.observe(root, {childList: true});
}
}
})();