From 76f757e9e5e6e423462047be0e1cbd515208ffcb Mon Sep 17 00:00:00 2001 From: finga Date: Tue, 5 Jun 2018 08:29:12 +0200 Subject: [PATCH] change tab bar colors and add keybinding --- .config/qutebrowser/config.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 236655e..34785e1 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -323,15 +323,15 @@ c.bindings.default = {} ## Background color of the tab bar. ## Type: QtColor -# c.colors.tabs.bar.bg = '#555555' +c.colors.tabs.bar.bg = '#333333' ## Background color of unselected even tabs. ## Type: QtColor -# c.colors.tabs.even.bg = 'darkgrey' +c.colors.tabs.even.bg = '#BBBBBB' ## Foreground color of unselected even tabs. ## Type: QtColor -# c.colors.tabs.even.fg = 'white' +c.colors.tabs.even.fg = 'black' ## Color for the tab indicator on errors. ## Type: QtColor @@ -356,11 +356,11 @@ c.bindings.default = {} ## Background color of unselected odd tabs. ## Type: QtColor -# c.colors.tabs.odd.bg = 'grey' +c.colors.tabs.odd.bg = '#CCCCCC' ## Foreground color of unselected odd tabs. ## Type: QtColor -# c.colors.tabs.odd.fg = 'white' +c.colors.tabs.odd.fg = 'black' ## Background color of selected even tabs. ## Type: QtColor @@ -1506,6 +1506,7 @@ config.bind('b', 'set-cmd-text -s :tab-focus') # config.bind('gC', 'tab-clone') # config.bind('gO', 'set-cmd-text :open -t -r {url:pretty}') config.bind('', 'set-cmd-text -s :open -t') +config.bind('', 'set-cmd-text -s :open -t {url:pretty}') # config.bind('gU', 'navigate up -t') # config.bind('g^', 'tab-focus 1') # config.bind('ga', 'open -t')