From 991b9066903f58f4a2580699d2e4095e0c148ee0 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 27 Aug 2019 14:13:18 +0200 Subject: [PATCH] Add js whitelist for gmaps, gmail. Fix tab display Tab titles need a number in front for quick gm movement. Google maps and Google mail do not work without javascript. --- .config/qutebrowser/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index bc88c0b..f86e270 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -27,6 +27,8 @@ js_whitelist = [ "*://news.ycombinator.com/*", "*://reddit.com/*", "*://translate.google.com/*", + "*://maps.google.com/*", + "*://mail.google.com/*", "*://todoist.com/*", "*://toggl.com/*", "file://*", @@ -45,7 +47,7 @@ c.editor.command = ["alacritty", "-e", "nvim", "-f", "{file}"] # Tab-Bar # have tab bar on the right, not on the top c.tabs.background = True -c.tabs.title.format = '{perc}{current_title}' +c.tabs.title.format = '{index} {audio}{perc}{current_title}{title_sep}' c.tabs.position = "right" c.tabs.width = "15%"