import Quickshell import Quickshell.Wayland import Quickshell.Hyprland import Quickshell.Io import QtQuick import QtQuick.Layouts import "." import "constants" import "ui" import "services" // qmllint disable uncreatable-type PanelWindow { id: root // ===================== // Layout // ===================== anchors.top: true anchors.left: true anchors.right: true implicitHeight: 25 color: Constants.colBg RandomWallpaper {} SystemStats { id: stats } TopBar { anchors.fill: parent cpuUsage: stats.cpuUsage memUsage: stats.memUsage } }