Iwakura/users/thorn/xresources.nix
2021-04-27 22:47:09 +00:00

28 lines
692 B
Nix
Executable File

let
cs = import ../../lib/colours.nix;
in {
xresources.properties = {
# "*.font" = "-*-tewi-medium-*-*-*-11-*-*-*-*-*-*-*"
"*.foreground" = cs.fg;
"*.background" = cs.bg;
"*.cursorColor" = cs.cc;
"*.color0" = cs.black;
"*.color8" = cs.blackBold;
"*.color1" = cs.red;
"*.color9" = cs.redBold;
"*.color2" = cs.green;
"*.color10" = cs.greenBold;
"*.color3" = cs.yellow;
"*.color11" = cs.yellowBold;
"*.color4" = cs.blue;
"*.color12" = cs.blueBold;
"*.color5" = cs.magenta;
"*.color13" = cs.magentaBold;
"*.color6" = cs.cyan;
"*.color14" = cs.cyanBold;
"*.color7" = cs.white;
"*.color15" = cs.whiteBold;
};
}