blob: 3481962d07273e15a83da6f38c675972bace7378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
config,
pkgs,
...
}: {
home.file.".xresources" = {
recursive = true;
source = ../xresources;
onChange = ''
if [[ -n "$DISPLAY" ]]; then
${pkgs.xorg.xrdb}/bin/xrdb -merge .xresources/main
fi
'';
};
}
|