diff options
author | Preston Pan <preston@nullring.xyz> | 2023-06-24 14:30:02 +0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-06-24 14:30:02 +0800 |
commit | 5362e381bcf1b1fe212ff3d550f61c9d55cd18e6 (patch) | |
tree | 6c3ffaf31f19366ebd900fcf874edbb263e7495a /config/qutebrowser.org | |
parent | e9a6b2006f08c3a48ab4e64d6c84a4ff4e62d411 (diff) |
Changed configs; add journal post
Diffstat (limited to 'config/qutebrowser.org')
-rw-r--r-- | config/qutebrowser.org | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/config/qutebrowser.org b/config/qutebrowser.org index 7490371..0763f68 100644 --- a/config/qutebrowser.org +++ b/config/qutebrowser.org @@ -2,7 +2,7 @@ #+author: Preston Pan #+date: <2023-06-09 Fri> #+description: a catppuccin configuration for qutebrowser. - +#+auto_tangle: t #+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> * Configuration @@ -65,8 +65,8 @@ c.url.searchengines = { ** Start Page Set the default start page to my own website. #+begin_src python :tangle config.py -c.url.start_pages = ["https://preston.nullring.xyz"] -c.url.default_page = "https://preston.nullring.xyz" +c.url.start_pages = ["file:///home/preston/website_html/index.html"] +c.url.default_page = "file:///home/preston/website_html/index.html" #+end_src ** Keybindings Now we define our keybindings for useful programs while browsing: @@ -92,10 +92,6 @@ Doing mundane things like setting the downloads directory to not use an upper ca #+begin_src python :tangle config.py c.downloads.location.directory = "~/downloads" #+end_src -We also want to do this for the purpose of EXWM: -#+begin_src python :tangle config.py -c.tabs.tabs_are_windows = True -#+end_src ** End of Config #+begin_src python :tangle config.py config.load_autoconfig() |