Initial Commit

This commit is contained in:
Amaro Lopes
2025-09-21 00:47:06 -03:00
commit 2445e21f0b
11 changed files with 795 additions and 0 deletions

31
BarArea.qml Normal file
View File

@@ -0,0 +1,31 @@
import QtQuick
import QtQuick.Layouts
import Quickshell.Widgets
WrapperRectangle {
id: barArea
property var monitor: "DP-1"
property var components: [] // Add this new property
color: "transparent"
margin: 0
RowLayout {
Repeater {
model: barArea.components
delegate: Loader {
required property var modelData
// The source of the loader is the component from the model
source: modelData
onLoaded: {
item.monitor = barArea.monitor;
}
}
}
}
}