mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 05:13:11 +01:00
8ac416880d
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.
26 lines
669 B
Plaintext
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
|