From 8f7df07bfd980ad5e1fd356cbb4d545d53d44252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alperen=20=C4=B0sa?= <66299502+Afacanc38@users.noreply.github.com> Date: Mon, 30 Aug 2021 15:04:52 +0300 Subject: [PATCH] Create 1-first-step.py --- vanilla/1-first-step.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vanilla/1-first-step.py diff --git a/vanilla/1-first-step.py b/vanilla/1-first-step.py new file mode 100644 index 0000000..ea1e297 --- /dev/null +++ b/vanilla/1-first-step.py @@ -0,0 +1,9 @@ +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()