import QtQuick import Quickshell PanelWindow { id: root width: 32 height: 32 visible: true color: "black" anchors { right: true bottom: true } SpriteSequence { id: anim anchors.centerIn: parent width: 64 height: 64 running: true interpolate: false Sprite { name: "idle" source: "WhiteCatRun.png" frameCount: 6 frameWidth: 32 frameHeight: 32 frameRate: 12 } } }