nix-config/xresources/.Xresources
Donovan Glover 8ac416880d
xresources: Change DPI from 180 to 192
It turns out that some software will not render properly if the DPI is
not set using increments of 25% (i.e. 96, 120, 144, 168, 192, etc.).

Since GNOME and Plasma already use a scale factor of 2x, it makes sense
to use 2x for .Xresources as well. Now GTK and Qt applications should
share the same size across both bspwm and their respective DEs.
2018-11-21 18:34:35 -05:00

26 lines
669 B
Plaintext

! New Start: A modern Arch workflow built with an emphasis on functionality.
! Copyright (C) 2017-2018 Donovan Glover
! Use 2x (192/96) scaling for 4k (Effectively 1920x1080)
Xft.dpi: 192
! Make it easier to distinguish between letters (Required for dpi < 300)
Xft.hinting: true
! Make high resolution output look cleaner
Xft.antialias: true
! Only use hinting if the font provides it; do not attempt to autohint
Xft.autohint: false
! Reduce blur and other unwanted artifacts
Xft.lcdfilter: lcddefault
! Align the font fully to the grid (increases clarity)
Xft.hintstyle: hintfull
! Set the type of subpixel antialiasing to rgb
Xft.rgba: rgb
! vim:ft=xdefaults