init: app launcher

This commit is contained in:
2025-05-19 10:07:37 +02:00
parent 5d08a48b6c
commit 5c5fce2581
2 changed files with 145 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ from fabric.utils import (
)
from .modules.bar import StatusBar
from .modules.window_fuzzy import FuzzyWindowFinder
from .modules.app_launcher import AppLauncher
tray = SystemTray(name="system-tray", spacing=4)
@@ -18,10 +19,11 @@ river = get_river_connection()
dummy = Window(visible=False)
finder = FuzzyWindowFinder()
launcher = AppLauncher()
bar_windows = []
app = Application("bar", dummy, finder)
app = Application("bar", dummy, finder, launcher)
app.set_stylesheet_from_file(get_relative_path("styles/main.css"))