pragma Singleton import QtQuick import Quickshell import Quickshell.Io Singleton { id: root property var scale: 1 IpcHandler { target: "panel" function scale(scale: real): void { root.scale = scale; } } }