💥 fix(scripts/wallpaper): also check for 1 value on splash property

This commit is contained in:
retrozinndev
2025-06-13 18:59:47 -03:00
parent 84358cff4b
commit 9f30b3e9f2
+1 -1
View File
@@ -68,7 +68,7 @@ class Wallpaper extends GObject.Object {
switch(key) { switch(key) {
case "splash": case "splash":
this.splash = /(yes|true|on|enable|enabled)/.test(value) ? true : false; this.splash = (/(yes|true|on|enable|enabled|1).*/.test(value)) ? true : false;
break; break;
case "wallpaper": case "wallpaper":