Pycode
Pycode
# UI Elements
title_label = tk.Label(root, text="rekts launcher", font=("Arial", 18), bg="blue",
fg="black")
title_label.pack(pady=20)
# Exit Button
exit_button = tk.Button(root, text="Exit", font=("Arial", 14),
command=exit_launcher)
exit_button.pack(pady=10)