initial commit

This commit is contained in:
2024-07-18 19:04:58 +09:30
commit 5505d966cf
3 changed files with 15 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
win = Gtk.Window()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()