From 48229fc742d8b15a4695e3160f2c5cb29dac357c Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 2 Oct 2023 19:12:56 +0200 Subject: [PATCH] qutebrowser: Set tab display length to 2 seconds When not showing tabs (only displaying them on actually switchting between tabs), so far the duration that the tabs would be displayed was just 800ms, way too short to actually provide legible info. This commit changes it to 2000ms, which may still be too short but is at least more digestible. --- qutebrowser/.config/qutebrowser/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 822a68a..d7c7953 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -56,6 +56,7 @@ c.tabs.title.format = "{index} {audio}{perc}{current_title}" c.tabs.position = "right" c.tabs.width = "15%" c.tabs.show = "multiple" +c.tabs.show_switching_delay = 2000 c.statusbar.show = "always" c.colors.webpage.bg = "#555555"