started work on settings menu

This commit is contained in:
2025-10-29 13:11:51 +11:00
parent 214172c224
commit 653714c946
2 changed files with 63 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ from pathlib import Path
from assets.theme_mappings import theme_mappings
from plugin_loader import PluginLoader
from settings import SettingsScreen
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
@@ -349,6 +350,8 @@ class Berry(App):
#else:
# self.query_one("#terminal").start()
self.push_screen(SettingsScreen())
if __name__ == "__main__":
app = Berry("./")
app.run()