37 lines
613 B
QML
37 lines
613 B
QML
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Hyprland
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
import "."
|
|
import "constants"
|
|
import "ui"
|
|
|
|
// 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
|
|
}
|
|
}
|