diff options
author | Ben Sima <ben@bsima.me> | 2021-01-09 13:58:37 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-09 14:14:20 -0500 |
commit | 528b5dbfdc4e3a475081cdd550668fed33afc847 (patch) | |
tree | 0b38a9ac81356da55a9eb34edcaeaeeeeaeeecc2 /linux.nix | |
parent | 4bd0ba3cf57f450f3d3813eba19989bb99bcb036 (diff) |
fix qutebrowser, bat, and urxvt for theme switching
Diffstat (limited to 'linux.nix')
-rw-r--r-- | linux.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -395,7 +395,9 @@ in qutebrowser = { enable = true; settings = { - "colors.webpage.darkmode.enabled" = true; + "colors.webpage.darkmode.enabled" = + if theme == "dark" then true else false; + "content.user_stylesheets" = "~/.userstyles.css"; # generated in lib/common.nix # attempting to fix gl rendering |