diff options
-rw-r--r-- | dotfiles/.config/qutebrowser/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dotfiles/.config/qutebrowser/config.py b/dotfiles/.config/qutebrowser/config.py index 9df249f..282aec5 100644 --- a/dotfiles/.config/qutebrowser/config.py +++ b/dotfiles/.config/qutebrowser/config.py @@ -27,6 +27,10 @@ ultramar = { c.content.notifications = False +## Disable JS by default + +c.content.javascript.enabled = False + ## Downloads # Automatically remove finished downloads from list @@ -46,6 +50,9 @@ c.url.start_pages = "https://srx.yaroslavps.com" ## Default fonts c.fonts.default_size = "10pt" +## Prefer dark mode in websites that support it +c.colors.webpage.prefers_color_scheme_dark = True + ## Background color of the completion widget category headers. ## Type: QssColor c.colors.completion.category.bg = ultramar['dark0'] |