Add selectable color schemes

This commit is contained in:
Ray Berezowski
2026-08-25 17:31:54 -04:00
parent 8760d96310
commit c5f4fe2d0e
7 changed files with 179 additions and 38 deletions

View File

@@ -20,6 +20,7 @@ public sealed class LauncherController : IDisposable
public void Start()
{
Config = ConfigService.Load();
ThemeService.Apply(Config.ThemeScheme);
CreateTrayIcon();
RegisterHotkey();
}
@@ -27,6 +28,7 @@ public sealed class LauncherController : IDisposable
public void ReloadConfig()
{
Config = ConfigService.Load();
ThemeService.Apply(Config.ThemeScheme);
RegisterHotkey();
popup?.Close();
popup = null;