Удалить заглавную строку в Tkinter

from tkinter import *
root = Tk()
root.overrideredirect (True)
root.mainloop()
Handsome Hedgehog