9
9
10
10
iterm_re = re .compile ("(.+)\.itermcolors$" )
11
11
iterm_ext = '.itermcolors'
12
- xrdb_ext = '.xrdb'
13
12
hex_format = '%02x%02x%02x'
14
13
15
14
red_comp = 'Red Component'
@@ -25,13 +24,11 @@ def __init__(
25
24
loader : Environment ,
26
25
bar : Progress ,
27
26
path_to_iterm_schemes : str ,
28
- path_to_xrdb : str ,
29
27
output_dir : str
30
28
):
31
29
self .bar = bar
32
30
self .loader = loader
33
31
self .iterm_dir = path_to_iterm_schemes
34
- self .xrdb_dir = path_to_xrdb
35
32
self .out_dir = output_dir
36
33
37
34
self .templates = self .get_all_templates (templates )
@@ -63,7 +60,6 @@ def parse_scheme(self, scheme):
63
60
colors_dict = {}
64
61
65
62
iterm_path = self .iterm_dir + scheme + iterm_ext
66
- xrdb_path = self .xrdb_dir + scheme + xrdb_ext
67
63
68
64
if not os .path .isfile (iterm_path ):
69
65
logging .error ('Scheme ' + iterm_path + ' doesn\' t exist' )
@@ -93,11 +89,6 @@ def parse_scheme(self, scheme):
93
89
94
90
f .close ()
95
91
96
- # xrdb files were used to generate themes, now it is not needed
97
- # but in case someone uses them for other purposes, these files continue to be saved
98
- if not os .path .isfile (xrdb_path ):
99
- self .generate_xrdb_file (xrdb_path , colors_dict )
100
-
101
92
return colors_dict
102
93
103
94
def detect_dark_theme (self , hex ):
@@ -126,14 +117,6 @@ def calculcate_color_components_guint16(self, color_components):
126
117
def calculate_guint16 (self , x ):
127
118
return str (int ((x * 256 )) + int ((x * 256 )) * 256 )
128
119
129
- def generate_xrdb_file (self , xrdb_path , hex_dict ):
130
- with open (xrdb_path , 'w' ) as f :
131
- for color_name in hex_dict :
132
- color_hex = hex_dict [color_name ]
133
- f .write ('#define ' + color_name .replace (' ' , '_' ) + ' #' + color_hex ['hex' ] + '\n ' )
134
-
135
- f .close ()
136
-
137
120
def generate_from_template (self , task_id , colors , template ):
138
121
self .bar .update (task_id , total = len (self .schemes ))
139
122
0 commit comments