From 24271747b18462e561631e9c0a3fd7e1dd48ac7d Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 2 May 2021 12:35:08 +0200 Subject: Updated qutebrowser j/k binded to scroll-page instead of up/down --- config/qutebrowser/config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'config/qutebrowser') diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index a364bef..a6112ac 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -69,6 +69,9 @@ config.bind('K', 'tab-next', 'normal') config.bind('', 'devtools', 'normal') +config.bind('j', 'scroll-page 0 0.05', 'normal') +config.bind('k', 'scroll-page 0 -0.05', 'normal') + c.colors.webpage.darkmode.enabled = True # Convert light themed sites to dark theme # c.content.proxy = 'socks://localhost:9050/' # tor @@ -293,4 +296,4 @@ c.colors.tabs.selected.even.fg = base05 # Background color of selected even tabs. c.colors.tabs.selected.even.bg = base02 # Background color for webpages if unset (or empty to use the theme's color). -c.colors.webpage.bg = base00 +c.colors.webpage.bg = '#222222' -- cgit