docs: qutebrowser

This commit is contained in:
Felipe M 2020-12-24 12:43:54 +01:00
parent 2d7fc029c3
commit 02910676a0

View file

@ -0,0 +1,27 @@
# Qutebrowser
## Change default search engine
``` python
# ~/.config/qutebrowser/config.py
c.url.searchengines = {
"DEFAULT": "https://google.com/search?q={}
}
```
## Change default start page
``` python
# ~/.config/qutebrowser/config.py
c.url.start_page = ["https://google.es"/
c.url.start_urls = ["https://google.es"]
```
## Auto load last session
``` python
# ~/.config/qutebrowser/config.py
c.auto_save.session true
c.auto_save.interval 15000
```