Model wallpaper display policies

This commit is contained in:
Gabriel Brown
2026-08-18 15:00:18 -04:00
parent 3e98cc2216
commit c8004e400a
4 changed files with 263 additions and 0 deletions
@@ -747,6 +747,32 @@ Singleton {
label: "Wallpaper",
detail: "Shown on every output"
},
{
key: "wallpaperMode", type: "enum", def: "single", group: "wallpaper",
label: "Wallpaper mode", detail: "Use one image, rotate a collection, or choose per display",
options: [
{ value: "single", label: "Single" },
{ value: "slideshow", label: "Slideshow" },
{ value: "per-monitor", label: "Per display" }
]
},
{
key: "wallpaperSlideshowPaths", type: "json", def: ([]), group: "wallpaper", internal: true,
label: "Slideshow collection", detail: "Backgrounds selected for rotation"
},
{
key: "wallpaperIntervalMinutes", type: "int", def: 30, min: 5, max: 1440, step: 5,
unit: "min", group: "wallpaper", label: "Change background every",
detail: "Time between slideshow images"
},
{
key: "wallpaperShuffle", type: "bool", def: true, group: "wallpaper",
label: "Shuffle", detail: "Show every selected image before repeating"
},
{
key: "wallpaperPerMonitor", type: "json", def: ({}), group: "wallpaper", internal: true,
label: "Per-display backgrounds", detail: "Background assigned to each connected display"
},
// ── Lock-screen appearance ─────────────────────────────────────────
// scripts/panama-lock validates these again before generating a state
@@ -0,0 +1,97 @@
function validPath(path, candidates) {
if (typeof path !== "string" || !/^\/[^,\n]+$/.test(path))
return false;
return (candidates || []).includes(path);
}
function validCollection(paths, candidates) {
const result = [];
const seen = {};
for (const path of paths || []) {
if (!validPath(path, candidates) || seen[path])
continue;
seen[path] = true;
result.push(path);
}
return result;
}
function validAssignments(assignments, candidates) {
const result = {};
if (!assignments || typeof assignments !== "object" || Array.isArray(assignments))
return result;
for (const output of Object.keys(assignments)) {
if (!/^[A-Za-z0-9_.-]+$/.test(output))
continue;
const path = assignments[output];
if (validPath(path, candidates))
result[output] = path;
}
return result;
}
function effectiveMap(mode, globalPath, slideshowPath, assignments, outputs, candidates) {
const result = {};
const fallback = validPath(globalPath, candidates)
? globalPath
: ((candidates || [])[0] || "");
const selectedAssignments = validAssignments(assignments, candidates);
const slideshow = validPath(slideshowPath, candidates) ? slideshowPath : fallback;
for (const output of outputs || []) {
if (typeof output !== "string" || !/^[A-Za-z0-9_.-]+$/.test(output))
continue;
if (mode === "per-monitor")
result[output] = selectedAssignments[output] || fallback;
else if (mode === "slideshow")
result[output] = slideshow;
else
result[output] = fallback;
}
return result;
}
function orderedNext(collection, current) {
const paths = collection || [];
if (paths.length === 0)
return "";
const index = paths.indexOf(current);
return paths[(index + 1 + paths.length) % paths.length];
}
function shuffledBag(collection, random) {
const result = Array.from(collection || []);
const nextRandom = typeof random === "function" ? random : Math.random;
for (let index = result.length - 1; index > 0; index--) {
const swap = Math.floor(Math.max(0, Math.min(0.999999999, nextRandom())) * (index + 1));
const value = result[index];
result[index] = result[swap];
result[swap] = value;
}
return result;
}
function shuffledNext(collection, bag, current, random) {
const paths = Array.from(collection || []);
if (paths.length === 0)
return { path: "", bag: [] };
const remaining = [];
const seen = {};
for (const path of bag || []) {
if (!paths.includes(path) || seen[path])
continue;
seen[path] = true;
remaining.push(path);
}
if (remaining.length === 0)
remaining.push(...shuffledBag(paths, random));
if (remaining.length > 1 && remaining[0] === current) {
const replacement = remaining.findIndex(path => path !== current);
const value = remaining[0];
remaining[0] = remaining[replacement];
remaining[replacement] = value;
}
return { path: remaining[0], bag: remaining.slice(1) };
}
@@ -0,0 +1,58 @@
import Quickshell
import Quickshell.Io
import QtQuick
import "services/WallpaperPolicy.js" as WallpaperPolicy
ShellRoot {
readonly property var candidates: ["/images/a.jpg", "/images/b.jpg", "/images/c.jpg"]
readonly property var outputs: ["DP-2", "HDMI-A-1"]
IpcHandler {
target: "wallpaper-policy-test"
function status(): string {
const collection = WallpaperPolicy.validCollection([
"/images/a.jpg", "/invalid.jpg", "/images/b.jpg",
"/images/a.jpg", "relative.jpg", "/images/c.jpg"
], candidates);
const assignments = WallpaperPolicy.validAssignments({
"DP-2": "/images/b.jpg",
"HDMI-A-1": "/invalid.jpg",
"bad connector!": "/images/c.jpg"
}, candidates);
return JSON.stringify({
validAbsolute: WallpaperPolicy.validPath("/images/a.jpg", candidates),
invalidComma: WallpaperPolicy.validPath("/images/a,b.jpg", candidates),
invalidUnknown: WallpaperPolicy.validPath("/images/nope.jpg", candidates),
collection,
assignments,
single: WallpaperPolicy.effectiveMap(
"single", "/images/a.jpg", "", assignments, outputs, candidates),
perMonitor: WallpaperPolicy.effectiveMap(
"per-monitor", "/images/a.jpg", "", assignments, outputs, candidates),
slideshow: WallpaperPolicy.effectiveMap(
"slideshow", "/images/a.jpg", "/images/c.jpg", assignments, outputs, candidates),
ordered: [
WallpaperPolicy.orderedNext(collection, "/images/a.jpg"),
WallpaperPolicy.orderedNext(collection, "/images/b.jpg"),
WallpaperPolicy.orderedNext(collection, "/images/c.jpg")
]
});
}
function shuffle(): string {
const values = [0.8, 0.1, 0.6, 0.2, 0.9, 0.4];
let index = 0;
const random = () => values[index++ % values.length];
let state = { bag: [], current: "" };
const emitted = [];
for (let count = 0; count < 4; count++) {
state = WallpaperPolicy.shuffledNext(candidates, state.bag, state.current, random);
emitted.push(state.path);
state.current = state.path;
}
return JSON.stringify({ emitted, remaining: state.bag });
}
}
}