diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-14 21:00:04 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-14 21:00:04 -0400 |
| commit | ca1d8b2b879d00a2c29fa15da06cc77f962307bf (patch) | |
| tree | 57ae834526fd9fe25e74319cf721399ef8563794 | |
| parent | 39538f107c5404514714928c7e5aa4af0678936d (diff) | |
| download | home-ca1d8b2b879d00a2c29fa15da06cc77f962307bf.tar.gz | |
modules/qutebrowser: better text rendering and scheme changes
| -rw-r--r-- | modules/qutebrowser/config.py | 4 | ||||
| -rw-r--r-- | modules/qutebrowser/default.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/qutebrowser/config.py b/modules/qutebrowser/config.py index d8d3595..0f41a9d 100644 --- a/modules/qutebrowser/config.py +++ b/modules/qutebrowser/config.py @@ -14,9 +14,9 @@ config.bind('j', 'search-next') config.bind('J', 'search-prev') config.bind('l', 'mode-enter insert') -# c.fonts.default_family = 'sans' +c.fonts.default_family = 'monospace' # c.fonts.prompts = 'sans' -# c.fonts.default_size = '12pt' +c.fonts.default_size = '11pt' c.hints.chars = 'arstneio' c.hints.radius=0 diff --git a/modules/qutebrowser/default.nix b/modules/qutebrowser/default.nix index 8c88760..68c438d 100644 --- a/modules/qutebrowser/default.nix +++ b/modules/qutebrowser/default.nix @@ -5,7 +5,7 @@ let fg = "${scheme.base05}"; fg2 = "${scheme.base03}"; bg = "${scheme.base00}"; - bg2 = "${scheme.base02}"; + bg2 = "${scheme.base01}"; in { options.modules.qutebrowser = { |