wallpaper: added an option to skip initial transition

This commit is contained in:
Lemmy
2026-02-11 14:46:46 -05:00
parent 046e6688eb
commit 02a5d10321
21 changed files with 56 additions and 0 deletions
+6
View File
@@ -704,6 +704,12 @@ Variants {
// Sets up transition params, then defers the actual animation
// to allow the compositor time to map the window.
function performStartupTransition() {
if (Settings.data.wallpaper.skipStartupTransition) {
setWallpaperImmediate(futureWallpaper);
isStartupTransition = false;
return;
}
// Get the transitionType from the settings
transitionType = Settings.data.wallpaper.transitionType;