feat: change logo

This commit is contained in:
2026-04-10 17:24:30 +02:00
parent 14afc821b1
commit e016695f83
3 changed files with 12 additions and 1 deletions
File diff suppressed because one or more lines are too long
+11
View File
@@ -0,0 +1,11 @@
import base64
import sys
if sys.argv[1] is None:
print("Usage: python encode_icon.py <path_to_image>")
sys.exit(1)
else:
with open(sys.argv[1], "rb") as image_file:
encoded_string = base64.b64encode(image_file.read())
print(encoded_string.decode("utf-8"))
Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 56 KiB