commit 5ff13155af54e5eb28aeaa122402ad1c45400911
parent 0a1b579d8ce3afd687353b63088698141d58684f
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Tue, 27 Oct 2020 16:50:30 -0400
Tweak qutebrowser font sizes
Diffstat:
1 file changed, 5 insertions(+), 13 deletions(-)
diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py
@@ -11,7 +11,7 @@
# qute://help/settings.html
# Uncomment this to still load settings configured via autoconfig.yml
-# config.load_autoconfig()
+config.load_autoconfig()
# Which cookies to accept. With QtWebEngine, this setting also controls
# other features with tracking capabilities similar to those of cookies;
@@ -119,14 +119,6 @@ config.set('content.javascript.enabled', True, 'chrome://*/*')
# Type: Bool
config.set('content.javascript.enabled', True, 'qute://*/*')
-# Allow websites to show notifications.
-# Type: BoolAsk
-# Valid values:
-# - true
-# - false
-# - ask
-config.set('content.notifications', True, 'https://pleroma.paritybit.ca')
-
# Directory to save downloads to. If unset, a sensible OS-specific
# default is used.
# Type: Directory
@@ -214,15 +206,15 @@ c.fonts.web.family.serif = '"DejaVu Serif"'
c.fonts.web.family.fixed = '"DejaVu Sans Mono"'
# Font used in the completion widget.
-c.fonts.completion.entry = '20px "DejaVu Sans Mono"'
+c.fonts.completion.entry = '18px "DejaVu Sans Mono"'
# Font used for the debugging console.
-c.fonts.debug_console = '20px "DejaVu Sans Mono"'
+c.fonts.debug_console = '18px "DejaVu Sans Mono"'
# Font used for prompts.
c.fonts.prompts = 'default_size sans-serif'
# Font used in the statusbar.
-c.fonts.statusbar = '20px "DejaVu Sans Mono"'
+c.fonts.statusbar = '18px "DejaVu Sans Mono"'
# Font used in context menu
-c.fonts.contextmenu = '20px "DejaVu Sans Mono"'
+c.fonts.contextmenu = '18px "DejaVu Sans Mono"'
# Scrollbar settings
c.scrolling.bar = "always"