blob: 22c68a894ec464211c4bca8d9727db6a3eb906fa (
plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
themedir = $(datadir)/themes/Daloa/xfwm4
PNG_FILES = \
bottom-active.png \
bottom-inactive.png \
bottom-left-active.png \
bottom-left-inactive.png \
bottom-right-active.png \
bottom-right-inactive.png \
close-active.png \
close-inactive.png \
close-pressed.png \
hide-active.png \
hide-inactive.png \
hide-pressed.png \
left-active.png \
left-inactive.png \
maximize-active.png \
maximize-inactive.png \
maximize-pressed.png \
maximize-toggled-active.png \
maximize-toggled-inactive.png \
maximize-toggled-pressed.png \
menu-active.png \
menu-inactive.png \
menu-pressed.png \
right-active.png \
right-inactive.png \
shade-active.png \
shade-inactive.png \
shade-pressed.png \
shade-toggled-active.png \
shade-toggled-inactive.png \
shade-toggled-pressed.png \
stick-active.png \
stick-inactive.png \
stick-pressed.png \
stick-toggled-active.png \
stick-toggled-inactive.png \
stick-toggled-pressed.png \
title-1-active.png \
title-1-inactive.png \
title-2-active.png \
title-2-inactive.png \
title-3-active.png \
title-3-inactive.png \
title-4-active.png \
title-4-inactive.png \
title-5-active.png \
title-5-inactive.png \
top-left-active.png \
top-left-inactive.png \
top-right-active.png \
top-right-inactive.png
SVG_FILES = \
bottom-active.svg \
bottom-inactive.svg \
bottom-left-active.svg \
bottom-left-inactive.svg \
bottom-right-active.svg \
bottom-right-inactive.svg \
close-active.svg \
close-inactive.svg \
close-pressed.svg \
hide-active.svg \
hide-inactive.svg \
hide-pressed.svg \
left-active.svg \
left-inactive.svg \
maximize-active.svg \
maximize-inactive.svg \
maximize-pressed.svg \
maximize-toggled-active.svg \
maximize-toggled-inactive.svg \
maximize-toggled-pressed.svg \
menu-active.svg \
menu-inactive.svg \
menu-pressed.svg \
right-active.svg \
right-inactive.svg \
shade-active.svg \
shade-inactive.svg \
shade-pressed.svg \
shade-toggled-active.svg \
shade-toggled-inactive.svg \
shade-toggled-pressed.svg \
stick-active.svg \
stick-inactive.svg \
stick-pressed.svg \
stick-toggled-active.svg \
stick-toggled-inactive.svg \
stick-toggled-pressed.svg \
title-1-active.svg \
title-1-inactive.svg \
title-2-active.svg \
title-2-inactive.svg \
title-3-active.svg \
title-3-inactive.svg \
title-4-active.svg \
title-4-inactive.svg \
title-5-active.svg \
title-5-inactive.svg \
top-left-active.svg \
top-left-inactive.svg \
top-right-active.svg \
top-right-inactive.svg
XPM_FILES = \
bottom-active.xpm \
bottom-inactive.xpm \
bottom-left-active.xpm \
bottom-left-inactive.xpm \
bottom-right-active.xpm \
bottom-right-inactive.xpm \
close-active.xpm \
close-inactive.xpm \
close-pressed.xpm \
hide-active.xpm \
hide-inactive.xpm \
hide-pressed.xpm \
left-active.xpm \
left-inactive.xpm \
maximize-active.xpm \
maximize-inactive.xpm \
maximize-pressed.xpm \
maximize-toggled-active.xpm \
maximize-toggled-inactive.xpm \
maximize-toggled-pressed.xpm \
menu-active.xpm \
menu-inactive.xpm \
menu-pressed.xpm \
right-active.xpm \
right-inactive.xpm \
shade-active.xpm \
shade-inactive.xpm \
shade-pressed.xpm \
shade-toggled-active.xpm \
shade-toggled-inactive.xpm \
shade-toggled-pressed.xpm \
stick-active.xpm \
stick-inactive.xpm \
stick-pressed.xpm \
stick-toggled-active.xpm \
stick-toggled-inactive.xpm \
stick-toggled-pressed.xpm \
title-1-active.xpm \
title-1-inactive.xpm \
title-2-active.xpm \
title-2-inactive.xpm \
title-3-active.xpm \
title-3-inactive.xpm \
title-4-active.xpm \
title-4-inactive.xpm \
title-5-active.xpm \
title-5-inactive.xpm \
top-left-active.xpm \
top-left-inactive.xpm \
top-right-active.xpm \
top-right-inactive.xpm
theme_DATA = \
README \
themerc \
$(XPM_FILES) \
$(PNG_FILES)
EXTRA_DIST = \
$(theme_DATA) \
$(SVG_FILES)
noinst_DATA = \
$(SVG_FILES)
vacuum-defs:
for svg_file in $(SVG_FILES); do \
inkscape --without-gui --vacuum-defs --file=$$svg_file; \
done
update-png:
for svg_file in $(SVG_FILES); do \
image=$${svg_file%.svg}; \
rsvg -f png $$svg_file $$image.png; \
done
|