summaryrefslogtreecommitdiff
path: root/bin/kasper_gui.py
blob: d94784d754d0afe8460478a901669e19b73eb70a (plain)
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()