diff options
author | sefidel <contact@sefidel.net> | 2024-08-26 18:15:07 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-08-26 18:15:07 +0900 |
commit | 6882ccee15544d90f59072b459b61cf8c94564cd (patch) | |
tree | 27a6aa08d7e98a3ce695430afcf29d81d76699ac /home | |
parent | 7c37e60946b5c974167da73d4dbd2b2e41a7e253 (diff) | |
download | nixrc-6882ccee15544d90f59072b459b61cf8c94564cd.tar.gz nixrc-6882ccee15544d90f59072b459b61cf8c94564cd.zip |
feat(home/gui): add Qt fractional scaling workaround
Diffstat (limited to 'home')
-rw-r--r-- | home/profiles/gui/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index 0212ce3..c383f19 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -118,6 +118,8 @@ in NIXOS_OZONE_WL = 1; # NOTE: might cause problems with old electron _JAVA_AWT_WM_NONREPARENTING = 1; # Fix 'grey screen' issue on java apps SDL_VIDEODRIVER = "wayland"; + # TODO: https://github.com/qutebrowser/qutebrowser/discussions/7938 + QT_SCALE_FACTOR_ROUNDING_POLICY = "RoundPreferFloor"; }; wayland.windowManager.sway = { |