mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 21:03:59 +01:00
fa8fb212ab
This caused some problems when the ~/.Xresources DPI was 192 and the screen resolution was 96 DPI. Since I now know how to manipulate cursor size even after X is started, manually setting Xft.dpi in ~/.Xresources to 96 or 192 DPI is no longer needed.
23 lines
598 B
Plaintext
23 lines
598 B
Plaintext
! New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
! Copyright (C) 2017-2018 Donovan Glover
|
|
|
|
! 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
|