aboutsummaryrefslogtreecommitdiff
path: root/x/xft.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-09-26 16:56:36 +0100
committerAkshay <[email protected]>2021-09-26 16:56:36 +0100
commit5cdb4e421a809de51c3ebe8404e50d732721238b (patch)
tree73b71617c41b3e13edbf26035e821bb884d30441 /x/xft.nix
init
Diffstat (limited to 'x/xft.nix')
-rw-r--r--x/xft.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/x/xft.nix b/x/xft.nix
new file mode 100644
index 0000000..74ea87d
--- /dev/null
+++ b/x/xft.nix
@@ -0,0 +1,16 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 xresources.properties = {
8 "Xft.autohint" = 1;
9 "Xft.antialias" = 1;
10 "Xft.lcdfilter" = "lcddefault";
11 "Xft.hintstyle" = "hintslight";
12 "Xft.hinting" = true;
13 "Xft.rgba" = "rgb";
14 "Xft.dpi" = 110;
15 };
16}