aboutsummaryrefslogtreecommitdiff
path: root/config/qutebrowser.org
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-07-13 22:58:59 +0800
committerPreston Pan <preston@nullring.xyz>2023-07-13 22:58:59 +0800
commitc335c05f511a373681d8644500d7750a519f58fa (patch)
treea1fa2737bc88c52ed8d0b894af772b6c41009462 /config/qutebrowser.org
parent5362e381bcf1b1fe212ff3d550f61c9d55cd18e6 (diff)
add a lot of things
Diffstat (limited to 'config/qutebrowser.org')
-rw-r--r--config/qutebrowser.org10
1 files changed, 8 insertions, 2 deletions
diff --git a/config/qutebrowser.org b/config/qutebrowser.org
index 0763f68..03741b0 100644
--- a/config/qutebrowser.org
+++ b/config/qutebrowser.org
@@ -11,9 +11,15 @@ We start with imports:
#+begin_src python :tangle config.py
from pathlib import Path
from urllib.parse import urlparse
-import catppuccin
+# import catppuccin
#+end_src
We import pathlib to get our home directory.
+** Theming
+I am experimenting with many themes right now, and one of them is the [[https://github.com/gicrisf/qute-city-lights][city-lights]] theme.
+Another one I have used is the [[https://github.com/catppuccin/catppuccin][catppuccin]] theme.
+#+begin_src python :tangle config.py
+config.source('themes/qute-city-lights/city-lights-theme.py')
+#+end_src
** Variables
We need the location of the home directory.
#+begin_src python :tangle config.py
@@ -95,5 +101,5 @@ c.downloads.location.directory = "~/downloads"
** End of Config
#+begin_src python :tangle config.py
config.load_autoconfig()
-catppuccin.setup(c, 'mocha', False)
+# catppuccin.setup(c, 'mocha', False)
#+end_src