aboutsummaryrefslogtreecommitdiff
path: root/x/xft.nix
blob: e4479e19439094f6df4fbd14d0acf699705c0da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config
, pkgs
, ...
}:

{
  xresources.properties = {
    "Xft.autohint" = 1;
    "Xft.antialias" = 1;
    "Xft.lcdfilter" = "lcddefault";
    "Xft.hintstyle" = "hintslight";
    "Xft.hinting" = true;
    "Xft.rgba" = "rgb";
    # "Xft.dpi" = 96;
  };
}