1 2 3 4 5 6 7 8 9 10 11
import tkinter from tkinter import PhotoImage display = tkinter.Tk() display.title("Kasper") photo = PhotoImage(file="icon.png") display.iconphoto(False, photo) # making 2 versions IOS AND DESKTOP # with swiftUI display.mainloop()