nixos/keepassxc: work around OCR issues

Since https://github.com/NixOS/nixpkgs/pull/288208, the OCR got worse and can't
seem to be able to read the text from title bars 😭. Setting the background
color to white fixes the problem.

https://ice-wm.org/manual/icewm-11.html
https://ice-wm.org/man/icewm-prefoverride
This commit is contained in:
amesgen 2024-11-06 01:52:08 +01:00
parent a04d33c0c3
commit 852523aa47
No known key found for this signature in database
GPG Key ID: 1A89EC203635A13D

View File

@ -17,6 +17,11 @@ import ./make-test-python.nix ({ pkgs, ...} :
services.xserver.enable = true;
# for better OCR
environment.etc."icewm/prefoverride".text = ''
ColorActiveTitleBar = "rgb:FF/FF/FF"
'';
# Regression test for https://github.com/NixOS/nixpkgs/issues/163482
qt = {
enable = true;