config moved to c++ plugin, removed old qml + fileview implementation

This commit is contained in:
2026-08-13 02:25:26 +02:00
parent c29b91cd26
commit 3cd3209b28
341 changed files with 4851 additions and 3502 deletions
+6 -5
View File
@@ -1,7 +1,8 @@
import QtQuick
import qs.Helpers
import qs.Components
import qs.Config
import ZShell.Config
import qs.Services
Item {
id: root
@@ -17,7 +18,7 @@ Item {
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
animate: true
color: DynamicColors.palette.m3secondary
color: Colors.palette.m3secondary
font.pointSize: 54
text: Weather.icon
}
@@ -26,15 +27,15 @@ Item {
id: info
anchors.left: icon.right
anchors.leftMargin: Appearance.spacing.large
anchors.leftMargin: Tokens.spacing.large
anchors.verticalCenter: parent.verticalCenter
spacing: 8
CustomText {
anchors.horizontalCenter: parent.horizontalCenter
animate: true
color: DynamicColors.palette.m3primary
font.pointSize: Appearance.font.size.extraLarge
color: Colors.palette.m3primary
font.pointSize: Tokens.font.size.extraLarge
font.weight: 500
text: Weather.temp
}