some nonsense

This commit is contained in:
2026-06-10 21:18:32 +01:00
parent 3ac5947251
commit eafc417a17
7 changed files with 315 additions and 10 deletions

41
Components/Utils.qml Normal file
View File

@@ -0,0 +1,41 @@
pragma ComponentBehavior: Bound
import Quickshell
import Quickshell.Hyprland
import QtQuick
import QtQuick.Layouts
import "./Utils"
RowLayout {
id: utilsContainer
required property HyprlandMonitor monitor
state: ""
anchors {
right: parent.right
top: parent.top
}
states: [
State {
name: ""
}
]
Rectangle {
color: "red"
implicitWidth: 40
implicitHeight: 40
}
Rectangle {
color: "blue"
implicitWidth: 40
implicitHeight: 40
}
// Battery {}
// Mpris {}
}