1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-07 14:05:38 -05:00

Add system resource dropdown

This commit is contained in:
bbedward
2025-07-13 15:36:41 -04:00
parent a9b5e0b09d
commit a1b6c9e791
13 changed files with 965 additions and 15 deletions

View File

@@ -41,7 +41,7 @@ Rectangle {
Column {
anchors.centerIn: parent
spacing: theme.spacingS
visible: !weather || !weather.available
visible: !weather || !weather.available || weather.temp === 0
Text {
text: "cloud_off"
@@ -63,7 +63,7 @@ Rectangle {
Row {
anchors.fill: parent
spacing: theme.spacingL
visible: weather
visible: weather && weather.available && weather.temp !== 0
// Weather icon
Text {
@@ -108,7 +108,7 @@ Rectangle {
columns: 2
spacing: theme.spacingM
anchors.horizontalCenter: parent.horizontalCenter
visible: weather !== null
visible: weather && weather.available && weather.temp !== 0
Row {
spacing: theme.spacingXS