From 27da0b1d83b1acd03d5628c45d8ede026b7dfc1e Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Wed, 17 Apr 2024 21:55:21 -0400 Subject: [PATCH] qutebrowser: add stylesheet --- src/.config/qutebrowser/config.py | 1 + src/.config/qutebrowser/style.css | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 src/.config/qutebrowser/style.css diff --git a/src/.config/qutebrowser/config.py b/src/.config/qutebrowser/config.py index 9af3f22..28bbb62 100644 --- a/src/.config/qutebrowser/config.py +++ b/src/.config/qutebrowser/config.py @@ -4,6 +4,7 @@ config.load_autoconfig() c.window.transparent = True +c.content.user_stylesheets = ["~/.config/qutebrowser/style.css"] c.colors.webpage.bg = "#444444" c.colors.completion.category.bg = "#111111" c.colors.completion.even.bg = "black" diff --git a/src/.config/qutebrowser/style.css b/src/.config/qutebrowser/style.css new file mode 100644 index 0000000..9367dc6 --- /dev/null +++ b/src/.config/qutebrowser/style.css @@ -0,0 +1,3 @@ +body { + background: #000000; +}