Files
linux-dotfiles/quickshell/shell.qml
2026-03-29 23:58:48 +02:00

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
}
}