Fullscreen Python TKinter or wxPython window, but 'stay at the bottom' of all windows? Fullscreen Python TKinter or wxPython window, but 'stay at the bottom' of all windows? tkinter tkinter

Fullscreen Python TKinter or wxPython window, but 'stay at the bottom' of all windows?


This is how I set the window position in pygame on windows.With this, it will cover all other windows, if you change the -1 to a 1 it will be behind other windows, I only know it works in windows.

import pygame, time, datetime, ctypesfrom pygame.locals import *from ctypes import windllpygame.init()set_window_pos = windll.user32.SetWindowPosmonitorsize = ctypes.windll.user32resolution_X = monitorsize.GetSystemMetrics(0)resolution_Y = monitorsize.GetSystemMetrics(1)screen = pygame.display.set_mode((255, 242), pygame.NOFRAME)set_window_pos(pygame.display.get_wm_info()['window'], -1, (resolution_X - 255), 50, 0, 0, 0x0001)

Making a window FULLSCREEN is done with:

screen = pygame.display.set_mode((800, 350), FULLSCREEN) # this works in linux