This repository was archived by the owner on Jul 9, 2024. It is now read-only.
forked from linuxmint/mint-themes
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgenerate-themes.py
executable file
·157 lines (131 loc) · 7.31 KB
/
generate-themes.py
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
#!/usr/bin/python3
import os
import sys
from constants import Y_HEX_ACCENT1, Y_HEX_ACCENT2
from constants import y_hex_colors1, y_hex_colors2
def change_value (key, value, file):
if value is not None:
command = "sed -i '/%(key)s=/c\%(key)s=%(value)s' %(file)s" % {'key':key, 'value':value, 'file':file}
else:
command = "sed -i '/%(key)s=/d' %(file)s" % {'key':key, 'file':file}
os.system(command)
# DELETED: def x_colorize_directory (path, variation):
def y_colorize_directory (path, variation):
for accent in Y_HEX_ACCENT1:
os.system("find %s -name '*.*' -type f -exec sed -i 's/%s/%s/gI' {} \\;" % (path, accent, y_hex_colors1[variation]))
for accent in Y_HEX_ACCENT2:
os.system("find %s -name '*.*' -type f -exec sed -i 's/%s/%s/gI' {} \\;" % (path, accent, y_hex_colors2[variation]))
if os.path.exists("usr"):
os.system("rm -rf usr/")
start_dir = os.getcwd()
os.system("mkdir -p usr/share/themes")
# DELETED: MINT-X GENERATE
curdir = os.getcwd()
# MINT-Y GENERATE
os.chdir("src/Mint-Y")
os.system("./build-themes.py")
os.chdir(curdir)
# Mint-Y color variations
for color in y_hex_colors1.keys():
for variant in ["-Base", "-Dark"]:
original_name = "Mint-Yz%s" % variant
path = os.path.join("src/Mint-Y/variations/%s" % color)
if os.path.isdir(path):
print("Derivating %s-%s" % (original_name, color))
# Copy theme
theme = "usr/share/themes/%s-%s" % (original_name, color)
theme_index = os.path.join(theme, "index.theme")
os.system("cp -R usr/share/themes/%s %s" % (original_name, theme))
# Theme name
for key in ["Name", "GtkTheme"]:
change_value(key, "%s-%s" % (original_name, color), theme_index)
for key in ["IconTheme"]:
change_value(key, "%s-%s" % (original_name, color), theme_index)
# Regenerate GTK4 sass
os.system("cp -R src/Mint-Y/gtk-4.0/sass %s/gtk-4.0/" % theme)
y_colorize_directory("%s/gtk-4.0/sass" % theme, color)
os.chdir("%s/gtk-4.0" % theme)
if (variant == "-Dark"):
os.system("cp sass/gtk-dark.scss sass/gtk.scss")
os.system("sassc ./sass/gtk.scss gtk.css")
else:
os.system("sassc ./sass/gtk-dark.scss gtk-dark.css")
os.system("sassc ./sass/gtk.scss gtk.css")
os.system("rm -rf sass .sass-cache")
os.chdir(curdir)
# Regenerate GTK3 sass
os.system("cp -R src/Mint-Y/gtk-3.0/sass %s/gtk-3.0/" % theme)
y_colorize_directory("%s/gtk-3.0/sass" % theme, color)
os.chdir("%s/gtk-3.0" % theme)
# os.system("sed -i 's/no-tint/tint/gI' ./sass/gtk.scss")
# os.system("sed -i 's/no-tint/tint/gI' ./sass/gtk-dark.scss")
if (variant == "-Dark"):
os.system("cp sass/gtk-dark.scss sass/gtk.scss")
os.system("sassc ./sass/gtk.scss gtk.css")
else:
os.system("sassc ./sass/gtk-dark.scss gtk-dark.css")
os.system("sassc ./sass/gtk.scss gtk.css")
os.system("rm -rf sass .sass-cache")
os.chdir(curdir)
# Regenerate Cinnamon sass
os.system("cp -R src/Mint-Y/cinnamon/sass %s/cinnamon/" % theme)
y_colorize_directory("%s/cinnamon/sass" % theme, color)
os.chdir("%s/cinnamon" % theme)
if (variant == "-Dark"):
os.system("cp sass/cinnamon-dark.scss sass/cinnamon.scss")
os.system("sassc ./sass/cinnamon.scss cinnamon.css")
os.system("rm -rf sass .sass-cache")
os.chdir(curdir)
# Accent color
files = []
files.append(os.path.join(theme, "gtk-2.0", "gtkrc"))
files.append(os.path.join(theme, "gtk-2.0", "main.rc"))
files.append(os.path.join(theme, "gtk-2.0", "panel.rc"))
files.append(os.path.join(theme, "gtk-2.0", "apps.rc"))
files.append(os.path.join(theme, "gtk-2.0", "menubar-toolbar.rc"))
for file in files:
if os.path.exists(file):
for accent in Y_HEX_ACCENT1:
os.system("sed -i s'/%(accent)s/%(color_accent)s/gI' %(file)s" % {'accent': accent, 'color_accent': y_hex_colors1[color], 'file': file})
for accent in Y_HEX_ACCENT2:
os.system("sed -i s'/%(accent)s/%(color_accent)s/gI' %(file)s" % {'accent': accent, 'color_accent': y_hex_colors2[color], 'file': file})
# Remove metacity-theme-3.xml (it doesn't need to be derived since it's using GTK colors, and Cinnamon doesn't want to list it)
os.system("rm -f %s" % os.path.join(theme, "metacity-1", "metacity-theme-3.xml"))
directories = []
directories.append(os.path.join(theme, "cinnamon/common-assets"))
directories.append(os.path.join(theme, "cinnamon/light-assets"))
directories.append(os.path.join(theme, "cinnamon/dark-assets"))
for directory in directories:
if os.path.exists(directory):
y_colorize_directory(directory, color)
# check update-variations.py All done or else exit
directories = []
directories.append(os.path.join(path, "cinnamon"))
directories.append(os.path.join(path, "gtk-2.0"))
directories.append(os.path.join(path, "gtk-3.0"))
for directory in directories:
if not os.path.exists(directory):
print("\nThere are missing directories in %s..." % path)
print("Please run './update-variations.py All' or './update-variations.py COLOR' before this './generate-themes.py'...")
sys.exit(1)
# Assets
os.system("rm -rf %s/cinnamon/thumbnail.png" % theme)
os.system("rm -rf %s/gtk-3.0/thumbnail.png" % theme)
os.system("rm -rf %s/gtk-4.0/assets" % theme)
os.system("rm -rf %s/gtk-3.0/assets" % theme)
os.system("rm -rf %s/gtk-2.0/assets" % theme)
if variant == "-Dark":
os.system("cp -R %s/cinnamon/mint-y-dark-thumbnail.png %s/cinnamon/thumbnail.png" % (path, theme))
os.system("cp -R %s/gtk-2.0/assets-dark %s/gtk-2.0/assets" % (path, theme))
os.system("cp -R %s/gtk-3.0/thumbnail-dark.png %s/gtk-3.0/thumbnail.png" % (path, theme))
os.system("cp -R %s/xfwm4-dark/*.png %s/xfwm4/" % (path, theme))
else:
os.system("cp -R %s/cinnamon/mint-y-thumbnail.png %s/cinnamon/thumbnail.png" % (path, theme))
os.system("cp -R %s/gtk-3.0/thumbnail.png %s/gtk-3.0/thumbnail.png" % (path, theme))
os.system("cp -R %s/gtk-2.0/assets %s/gtk-2.0/assets" % (path, theme))
os.system("cp -R %s/xfwm4/*.png %s/xfwm4/" % (path, theme))
os.system("cp -R %s/gtk-3.0/assets %s/gtk-3.0/assets" % (path, theme))
os.system("cp -R %s/gtk-4.0/assets %s/gtk-4.0/assets" % (path, theme))
# Files: no need to copy these old files/* since it is all done with update-variations.py, on Mint-Yz...
print ("\nDone. Are there any missing colors?")
print ("If so then run './update-variations.py All' and then './generate-themes.py' again.")