Initial commit
This commit is contained in:
15
main.py
Normal file
15
main.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import customtkinter as ctk
|
||||
from ui.app import ExerciseDiaryApp
|
||||
import os
|
||||
|
||||
def main():
|
||||
# Set appearance
|
||||
ctk.set_appearance_mode("Dark") # Modes: "System" (standard), "Dark", "Light"
|
||||
ctk.set_default_color_theme("blue") # Themes: "blue" (standard), "green", "dark-blue"
|
||||
|
||||
# Initialize app
|
||||
app = ExerciseDiaryApp()
|
||||
app.mainloop()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user