docs: qutebrowser
This commit is contained in:
parent
2d7fc029c3
commit
02910676a0
1 changed files with 27 additions and 0 deletions
27
.dotfiles/docs/qutebrowser.md
Normal file
27
.dotfiles/docs/qutebrowser.md
Normal 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue