From ef157fb26fdc7a66c25568ae21b351acd2c149b4 Mon Sep 17 00:00:00 2001 From: David King Date: Wed, 21 May 2014 09:38:29 +0100 Subject: Add skeleton app, which shows an empty window The appliction shows a window and runs forever. Closing the window does not stop the application, so it must be killed externally. --- python-gnome-app | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 python-gnome-app (limited to 'python-gnome-app') 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() -- cgit