logo

scripts

A bunch of scripts, some to be moved to their own repository git clone https://hacktivis.me/git/scripts.git

gtk3test.py (137B)


  1. #!/usr/bin/python
  2. from gi.repository import Gtk
  3. win = Gtk.Window()
  4. win.connect("delete-event", Gtk.main_quit)
  5. win.show_all()
  6. Gtk.main()