summary refs log tree commit diff stats
path: root/user/settings/xresources.nix
blob: 5ab0bb495b8bbb340b5499ca57f29b6649fb7ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{
  home.file.".xresources" = {
    recursive = true;
    source = ../xresources;
    onChange = ''
      if [[ -n "$DISPLAY" ]]; then
        ${pkgs.xorg.xrdb}/bin/xrdb -merge .xresources/main
      fi
    '';
  };
}