diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-27 14:53:56 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-27 14:53:56 +0400 |
commit | 45d0a219b778a0effc79c64f006a7cd7372446d8 (patch) | |
tree | f422fc7a2790b24edc6b8ca3541c00fdfd7fa832 /config | |
parent | c62d2b1ff035ca608695e8c932e6efafcfab463e (diff) |
qutebrowser: configure UI and default behavior
- Show tabs only when multiple are open
- Display statusbar only in modes
- Set default search engine to Google
- Use a custom local start page
Diffstat (limited to 'config')
-rwxr-xr-x | config/qutebrowser/config.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index fa84b4e..da80685 100755 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -1,5 +1,13 @@ from current_theme import * +c.tabs.show = 'multiple' + +c.statusbar.show = 'in-mode' + +c.url.searchengines = { 'DEFAULT': 'https://google.com/search?hl=en&q={}' } + +c.url.start_pages = '~/.config/qutebrowser/startpage/index.html' + # Text color of the completion widget. May be a single color to use for # all columns or a list of three colors, one for each column. c.colors.completion.fg = base05 |