Add option to make the transparent window blurry

This commit is contained in:
rhysd 2025-01-13 22:02:57 +09:00 committed by Héctor Ramón Jiménez
parent 2bbc7385e0
commit 8f346ac220
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 14 additions and 0 deletions

View file

@ -41,6 +41,7 @@ pub fn window_attributes(
})
.with_decorations(settings.decorations)
.with_transparent(settings.transparent)
.with_blur(settings.blur)
.with_window_icon(settings.icon.and_then(icon))
.with_window_level(window_level(settings.level))
.with_visible(settings.visible);