summaryrefslogtreecommitdiffstats
path: root/python-gnome-app
diff options
context:
space:
mode:
Diffstat (limited to 'python-gnome-app')
-rwxr-xr-xpython-gnome-app8
1 files changed, 8 insertions, 0 deletions
diff --git a/python-gnome-app b/python-gnome-app
new file mode 100755
index 0000000..09625d3
--- /dev/null
+++ b/python-gnome-app
@@ -0,0 +1,8 @@
+#!/usr/bin/python3
+
+from gi.repository import Gtk
+
+window = Gtk.Window()
+window.show_all()
+
+Gtk.main()