Skip to content

Instantly share code, notes, and snippets.

@bru32
Last active August 12, 2025 05:23
Show Gist options
  • Save bru32/1429aa6174f09b5efc6cb9ee280c06ef to your computer and use it in GitHub Desktop.
Save bru32/1429aa6174f09b5efc6cb9ee280c06ef to your computer and use it in GitHub Desktop.
Most basic tkinter skeleton
import tkinter as tk
from tkinter import ttk
root = tk.Tk()
root.title("App")
root.geometry("400x400+600+10")
root.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment