i just blank the screen
Code:
#!/bin/python3import tkinter as tkdef on_click(event): root.destroy()root = tk.Tk()root.attributes("-fullscreen", True)root.configure(bg='black')root.bind("<Button-1>", on_click)root.mainloop()Statistics: Posted by kerry_s — Thu Nov 20, 2025 5:59 pm