diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-11-07 17:00:19 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-11-07 17:00:19 +0100 |
| commit | 32ec9336088799c42d8aa7ace6648802e1b267cf (patch) | |
| tree | bc6d718631a2f2a210b4cde462a5f7f97bd6b613 /bin/kasper_gui.py | |
| parent | fa7007d00c04fc73f668e2b7f339c3f60a64d055 (diff) | |
did alot of designing and testing out on a linux machine
Diffstat (limited to 'bin/kasper_gui.py')
| -rw-r--r-- | bin/kasper_gui.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/kasper_gui.py b/bin/kasper_gui.py new file mode 100644 index 0000000..2826638 --- /dev/null +++ b/bin/kasper_gui.py | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | import tkinter | ||
| 2 | from tkinter import PhotoImage | ||
| 3 | |||
| 4 | display = tkinter.Tk() | ||
| 5 | display.title("Kasper") | ||
| 6 | photo = PhotoImage(file = "icon.png") | ||
| 7 | display.iconphoto(False, photo) | ||
| 8 | |||
| 9 | |||
| 10 | display.mainloop() \ No newline at end of file | ||
