Skip to content

Instantly share code, notes, and snippets.

View flaviosmoraes's full-sized avatar
🎯
Focusing

Flavio Moraes flaviosmoraes

🎯
Focusing
View GitHub Profile
import os
from PIL import Image, IcoImagePlugin
from pathlib import Path
def process_steam_icon():
ico_path = input("Caminho do arquivo .ico: ").strip().replace("'", "").replace('"', '')
app_id = input("AppID do jogo: ").strip()
if not os.path.exists(ico_path):
print("Erro: Arquivo não encontrado.")