added three new modules (Crypto.qml, Battery.qml, Network.qml), improved Stats.qml, improved Tray.qml, optimized code in general, added a polkit agent, configurations change (check configs)

This commit is contained in:
SomeElse
2026-05-14 04:56:33 +00:00
parent 046a36fbec
commit e3bfa6661f
31 changed files with 5857 additions and 353 deletions

View File

@@ -112,6 +112,7 @@ PanelWindow {
required property string modelData
source: Qt.resolvedUrl("modules/" + modelData + ".qml")
onLoaded: barContent.bindModule(item, "left")
visible: !item || item.moduleEnabled !== false
}
}
}
@@ -139,6 +140,7 @@ PanelWindow {
required property string modelData
source: Qt.resolvedUrl("modules/" + modelData + ".qml")
onLoaded: barContent.bindModule(item, "right")
visible: !item || item.moduleEnabled !== false
}
}
}
@@ -170,6 +172,7 @@ PanelWindow {
required property string modelData
source: Qt.resolvedUrl("modules/" + modelData + ".qml")
onLoaded: barContent.bindModule(item, "center")
visible: !item || item.moduleEnabled !== false
}
}
}