diff options
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() |