pragma Singleton import Quickshell import Quickshell.Io import QtQuick Singleton { id: root property var tags: [] Process { command: ["river-bedload", "-minified", "-watch", "tags"] running: true stdout: SplitParser { onRead: line => root.tags = JSON.parse(line).filter(tag => tag.id < 10) } } }