From 45d0a219b778a0effc79c64f006a7cd7372446d8 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Fri, 27 Jun 2025 14:53:56 +0400 Subject: 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 --- config/qutebrowser/config.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- cgit v1.2.3