From 0a616cadf32a14134facf6b7d3f2d6d544c90c27 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 29 Aug 2025 06:51:37 -0500 Subject: [PATCH] setting a vertical bar in qutebrowser --- .config/qutebrowser/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 1046d59..02b7d6d 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -2009,7 +2009,7 @@ c.statusbar.widgets = ['keypress', 'url', 'scroll', 'history', 'progress'] ## - bottom ## - left ## - right -# c.tabs.position = 'top' +c.tabs.position = 'left' ## Which tab to select when the focused tab is removed. ## Type: SelectOnRemove @@ -2077,7 +2077,7 @@ c.tabs.title.alignment = "center" ## Width (in pixels or as percentage of the window) of the tab bar if ## it's vertical. ## Type: PercOrInt -# c.tabs.width = '20%' +c.tabs.width = 30 ## Wrap when changing tabs. ## Type: Bool @@ -2251,8 +2251,8 @@ c.zoom.default = '100%' # config.bind('F', 'hint all tab') # config.bind('G', 'scroll-to-perc') # config.bind('H', 'back') -config.bind("K", "tab-next") -config.bind("J", "tab-prev") +config.bind("K", "tab-prev") +config.bind("J", "tab-next") # config.bind('L', 'forward') # config.bind('M', 'bookmark-add') # config.bind('N', 'search-prev')