Skip to content

Commit 249ba30

Browse files
committed
Add xrdb file template
1 parent 3f7136a commit 249ba30

File tree

3 files changed

+33
-18
lines changed

3 files changed

+33
-18
lines changed

tools/converter.py

-17
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
iterm_re = re.compile("(.+)\.itermcolors$")
1111
iterm_ext = '.itermcolors'
12-
xrdb_ext = '.xrdb'
1312
hex_format = '%02x%02x%02x'
1413

1514
red_comp = 'Red Component'
@@ -25,13 +24,11 @@ def __init__(
2524
loader: Environment,
2625
bar: Progress,
2726
path_to_iterm_schemes: str,
28-
path_to_xrdb: str,
2927
output_dir: str
3028
):
3129
self.bar = bar
3230
self.loader = loader
3331
self.iterm_dir = path_to_iterm_schemes
34-
self.xrdb_dir = path_to_xrdb
3532
self.out_dir = output_dir
3633

3734
self.templates = self.get_all_templates(templates)
@@ -63,7 +60,6 @@ def parse_scheme(self, scheme):
6360
colors_dict = {}
6461

6562
iterm_path = self.iterm_dir + scheme + iterm_ext
66-
xrdb_path = self.xrdb_dir + scheme + xrdb_ext
6763

6864
if not os.path.isfile(iterm_path):
6965
logging.error('Scheme ' + iterm_path + ' doesn\'t exist')
@@ -93,11 +89,6 @@ def parse_scheme(self, scheme):
9389

9490
f.close()
9591

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-
10192
return colors_dict
10293

10394
def detect_dark_theme(self, hex):
@@ -126,14 +117,6 @@ def calculcate_color_components_guint16(self, color_components):
126117
def calculate_guint16(self, x):
127118
return str(int((x * 256)) + int((x * 256)) * 256)
128119

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-
137120
def generate_from_template(self, task_id, colors, template):
138121
self.bar.update(task_id, total=len(self.schemes))
139122

tools/gen.py

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
loader=file_system_loader,
8080
bar=progress_bar,
8181
path_to_iterm_schemes='../schemes/',
82-
path_to_xrdb='../xrdb/',
8382
output_dir='../'
8483
)
8584

tools/templates/xrdb.xrdb

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#define Ansi_0_Color #{{ Ansi_0_Color.hex }}
2+
#define Ansi_1_Color #{{ Ansi_1_Color.hex }}
3+
#define Ansi_10_Color #{{ Ansi_10_Color.hex }}
4+
#define Ansi_11_Color #{{ Ansi_11_Color.hex }}
5+
#define Ansi_12_Color #{{ Ansi_12_Color.hex }}
6+
#define Ansi_13_Color #{{ Ansi_13_Color.hex }}
7+
#define Ansi_14_Color #{{ Ansi_14_Color.hex }}
8+
#define Ansi_15_Color #{{ Ansi_15_Color.hex }}
9+
#define Ansi_2_Color #{{ Ansi_2_Color.hex }}
10+
#define Ansi_3_Color #{{ Ansi_3_Color.hex }}
11+
#define Ansi_4_Color #{{ Ansi_4_Color.hex }}
12+
#define Ansi_5_Color #{{ Ansi_5_Color.hex }}
13+
#define Ansi_6_Color #{{ Ansi_6_Color.hex }}
14+
#define Ansi_7_Color #{{ Ansi_7_Color.hex }}
15+
#define Ansi_8_Color #{{ Ansi_8_Color.hex }}
16+
#define Ansi_9_Color #{{ Ansi_9_Color.hex }}
17+
#define Background_Color #{{ Background_Color.hex }}
18+
{% if Badge_Color %}#define Badge_Color #{{ Badge_Color.hex }}
19+
{% endif %}
20+
#define Bold_Color #{{ Bold_Color.hex }}
21+
#define Cursor_Color #{{ Cursor_Color.hex }}
22+
{% if Cursor_Guide_Color %}#define Cursor_Guide_Color #{{ Cursor_Guide_Color.hex }}
23+
{% endif %}
24+
#define Cursor_Text_Color #{{ Cursor_Text_Color.hex }}
25+
#define Foreground_Color #{{ Foreground_Color.hex }}
26+
{% if Link_Color %}#define Link_Color #{{ Link_Color.hex }}
27+
{% endif %}
28+
#define Selected_Text_Color #{{ Selected_Text_Color.hex }}
29+
#define Selection_Color #{{ Selection_Color.hex }}
30+
{% if Tab_Color %}#define Tab_Color #{{ Tab_Color.hex }}
31+
{% endif %}
32+
{% if Underline_Color %}#define Underline_Color #{{ Underline_Color.hex }}
33+
{% endif %}

0 commit comments

Comments
 (0)