feat: Logger

This commit is contained in:
RTAkland
2021-12-15 21:21:39 +08:00
parent 99bc9481da
commit 3c019ad98c
176 changed files with 92 additions and 0 deletions

12
res/icons/convert.py Normal file
View File

@@ -0,0 +1,12 @@
import os
file_list = []
for i in range(100, 10000):
if os.path.exists(f'{i}.svg'):
file_list.append(i)
for i in file_list:
os.system(f'inkscape -z -e {i}.png -w 256 -h 256 {i}.svg')