python screen without title
from tkinter import * #MAKE SURE TO PIP INSTALL TKINTER IN THE TERMINAL! root = Tk() #root.iconbitmap(r'C:\Users\Moon\Pictures\Python\MyIcon.png') #if we use this command the picture will move diagonally every run and then reset. root.geometry("200x250") #This is the size of the screen img = PhotoImage(file=r'C:\Users\Moon\Pictures\Python\MyPicture.png') #Replace the directory with your picture's directory Label(root,image=img).pack() root.overrideredirect(True) root.mainloop()