File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 2
2
# SPDX-License-Identifier: CC0-1.0
3
3
4
4
icons /tmp
5
- icons /output
5
+ icons /output
6
+ .codegpt
Original file line number Diff line number Diff line change @@ -200,6 +200,17 @@ rm "$TMP_DIR/blossom_tiny_dark.svg"
200
200
composite_svgs source/bg_tiny_square.svg source/blossom_tiny.svg $TMP_DIR /trayColor.svg 0 24
201
201
convert_svg_to_png " $TMP_DIR /trayColor.svg" " $OUTPUT_DIR /trayColor.png" 64
202
202
203
+ # Pure black icon
204
+ ICON=$( sed ' s/#f0cece/#000000/g' < source/blossom_tiny.svg)
205
+ echo " $ICON " > " $TMP_DIR /blossom_tiny_pure_black.svg"
206
+ convert_svg_to_png " $TMP_DIR /blossom_tiny_pure_black.svg" " $OUTPUT_DIR /trayBlack.png" 64
207
+ rm " $TMP_DIR /blossom_tiny_pure_black.svg"
208
+
209
+ # Pure white icon
210
+ ICON=$( sed ' s/#f0cece/#FFFFFF/g' < source/blossom_tiny.svg)
211
+ echo " $ICON " > " $TMP_DIR /blossom_tiny_pure_white.svg"
212
+ convert_svg_to_png " $TMP_DIR /blossom_tiny_pure_white.svg" " $OUTPUT_DIR /trayWhite.png" 64
213
+ rm " $TMP_DIR /blossom_tiny_pure_white.svg"
203
214
204
215
# ------------------------------------------ Favicon --------------------------------------------- #
205
216
You can’t perform that action at this time.
0 commit comments