1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-27 15:02:50 -05:00

weather: remove IP-based location

Probably better for privacy concerns just to use New York, NY as a
hardcoded default
This commit is contained in:
bbedward
2025-07-15 22:33:58 -04:00
parent e5ec8ad454
commit 8905b10773
4 changed files with 65 additions and 439 deletions

View File

@@ -111,7 +111,8 @@ Rectangle {
// Normal media info when playing
Row {
anchors.fill: parent
width: parent.width
height: 60
spacing: theme.spacingM
// Album Art
@@ -152,8 +153,8 @@ Rectangle {
// Track Info
Column {
width: parent.width - 60 - theme.spacingM
height: parent.height
spacing: theme.spacingXS
anchors.verticalCenter: parent.verticalCenter
Text {
text: activePlayer?.trackTitle || "Unknown Track"
@@ -301,11 +302,15 @@ Rectangle {
}
// Control buttons - always visible
Row {
anchors.horizontalCenter: parent.horizontalCenter
spacing: theme.spacingM
visible: activePlayer !== null
height: 32
Item {
width: parent.width
height: 32
visible: activePlayer !== null
Row {
anchors.horizontalCenter: parent.horizontalCenter
spacing: theme.spacingM
height: parent.height
// Previous button
Rectangle {
@@ -387,6 +392,7 @@ Rectangle {
onClicked: activePlayer?.next()
}
}
}
}
}
}