I have a small project, the project is running python (windows application) as below.On linux Fedora without using gdm,Gdm must be disabled. Any Idea please? What library I have to download ?
# importing tkinter for gui
import tkinter as tk
# creating window
window = tk.Tk()
# setting attribute
window.attributes('-fullscreen', True)
window.title("Geeks For Geeks")
# creating text label to display on window screen
label = tk.Label(window, text="Hello Tkinter!")
label.pack()
window.mainloop()