Wallpaper: added a bash script to compile all shaders

+ code cleanup
This commit is contained in:
LemmyCook 2025-08-30 11:22:09 -04:00
parent 477d38d928
commit 3c7d03ada9
6 changed files with 75 additions and 52 deletions

View file

@ -36,24 +36,12 @@ Singleton {
name: "Stripes"
}
ListElement {
key: "wipe_left"
name: "Wipe Left"
}
ListElement {
key: "wipe_right"
name: "Wipe Right"
}
ListElement {
key: "wipe_up"
name: "Wipe Up"
}
ListElement {
key: "wipe_down"
name: "Wipe Down"
key: "wipe"
name: "Wipe"
}
}
// All transition keys but filter out "random"
// All transition keys but filter out "none" and "random" so we are left with the real transitions
readonly property var allTransitions: Array.from({
"length": transitionsModel.count
}, (_, i) => transitionsModel.get(i).key).filter(
@ -154,7 +142,6 @@ Singleton {
}
//Logger.log("Wallpaper", "setWallpaper on", screenName, ": ", path)
var wallpaperChanged = false
var monitor = getMonitorConfig(screenName)