From 8cd2c69e3f3d047a469fdf2eece1b6ea5cdc96b2 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 7 Dec 2024 00:56:19 +0200 Subject: [PATCH] feat(mica): enable by default --- src/services/window.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/services/window.ts b/src/services/window.ts index 72a337d9a..3df960f9c 100644 --- a/src/services/window.ts +++ b/src/services/window.ts @@ -131,6 +131,10 @@ function getWindowExtraOpts() { } } + // Window effects (Mica) + // TODO: Apply only on Windows and allow the user to choose whether to activate it or not. + extraOpts.backgroundMaterial = "mica"; + return extraOpts; }