I want to try to have my tkinter program respond when anywhere in the screen is clicked, but i dont want to use a button because I don't want it to be seen and you cant make invisible buttons.
The start of my code so far :
import customtkinter as tk
screen = tk.CTk()
screen.configure(bg='black')
tk.set_appearance_mode('dark')
tk.set_default_color_theme('dark-blue')
screen.geometry('600x600')
screen.title('screen - Getting Started')
screen.resizable(0, 0)