-
Notifications
You must be signed in to change notification settings - Fork 3
/
xresources.nix
67 lines (63 loc) · 1.95 KB
/
xresources.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{ ... }: {
# Generated by 'wal'
xresources.properties = {
# "URxvt.font" = "xft:D2Coding for Powerline:pixelsize=15";
"URxvt.font" = "xft:Cousine for Powerline:pixelsize=12:minspace=false";
"URxvt.xftAntialias" = "true";
"URxvt.xftHinting" = "true";
"Xft.hintstyle" = "hintfull";
"Xft.rgba" = "none";
# "URxvt*transparent" = true;
# "URxvt*shading" = 25;
"URxvt*foreground" = "#f5e9e0";
"XTerm*foreground" = "#f5e9e0";
"UXTerm*foreground" = "#f5e9e0";
# "URxvt*background" = "[50]#0A2B39";
"XTerm*background" = "#0A2B39";
"UXTerm*background" = "#0A2B39";
"URxvt*cursorColor" = "#f5e9e0";
"XTerm*cursorColor" = "#f5e9e0";
"UXTerm*cursorColor" = "#f5e9e0";
"URxvt*borderColor" = "[100]#0A2B39";
"urxvt*background" = "rgba:0000/0000/0000/3800";
# Colors 0-15.
"*.color0" = "#0A2B39";
"*color0" = "#0A2B39";
"*.color1" = "#F4771F";
"*color1" = "#F4771F";
"*.color2" = "#CF6D26";
"*color2" = "#CF6D26";
"*.color3" = "#F47A24";
"*color3" = "#F47A24";
"*.color4" = "#F58637";
"*color4" = "#F58637";
"*.color5" = "#F79F60";
"*color5" = "#F79F60";
"*.color6" = "#FAC39C";
"*color6" = "#FAC39C";
"*.color7" = "#f5e9e0";
"*color7" = "#f5e9e0";
"*.color8" = "#aba39c";
"*color8" = "#aba39c";
"*.color9" = "#F4771F";
"*color9" = "#F4771F";
"*.color10" = "#CF6D26";
"*color10" = "#CF6D26";
"*.color11" = "#F47A24";
"*color11" = "#F47A24";
"*.color12" = "#F58637";
"*color12" = "#F58637";
"*.color13" = "#F79F60";
"*color13" = "#F79F60";
"*.color14" = "#FAC39C";
"*color14" = "#FAC39C";
"*.color15" = "#f5e9e0";
"*color15" = "#f5e9e0";
# Black color that will not be affected by bold highlighting.
"*.color66" = "#0A2B39";
"*color66" = "#0A2B39";
# Set depth to make transparency work.
"URxvt*depth" = "32";
"URxvt.internalBorder"= "0";
};
}