Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Created April 21, 2023 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akkiesoft/071d3cd9d416b69e3307f787a633d97b to your computer and use it in GitHub Desktop.
Save Akkiesoft/071d3cd9d416b69e3307f787a633d97b to your computer and use it in GitHub Desktop.
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
win = Gtk.Window()
entry = Gtk.Entry()
win.add(entry)
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment