I have this code :
class MainPage():
"""Main interface"""
def __init__(self, master=None):
super().__init__()
self.root = master # Main window
#self.root.resizable(False, False)
self.root.geometry('300x300')
self.root.config(background='#bfbfbf')
I need to Remove minimize/maximize button, not Disabled, and change colore of all bar
I need like that :