summaryrefslogtreecommitdiff
path: root/bin/kasper_gui.py
blob: 77adba2655c0e02a0ad89ea63297f75090610351 (plain)
1
2
3
4
5
6
7
8
9
10
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
display.mainloop()