mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-04 22:49:50 -05:00
settings: fix settings lol
This commit is contained in:
parent
c2a80e1044
commit
d0dd6674cb
2 changed files with 20 additions and 22 deletions
|
|
@ -18,7 +18,7 @@ Singleton {
|
||||||
JsonAdapter {
|
JsonAdapter {
|
||||||
id: jsonAdapter
|
id: jsonAdapter
|
||||||
|
|
||||||
property QtObject settings: QtObject {
|
property JsonObject settings: JsonObject {
|
||||||
property int barHeight: 25
|
property int barHeight: 25
|
||||||
property string wallpaperUrl: Qt.resolvedUrl("root:resources/wallpapers/pixelart0.jpg")
|
property string wallpaperUrl: Qt.resolvedUrl("root:resources/wallpapers/pixelart0.jpg")
|
||||||
property string colorScheme: "scheme-fruit-salad"
|
property string colorScheme: "scheme-fruit-salad"
|
||||||
|
|
|
||||||
40
bar/Bar.qml
40
bar/Bar.qml
|
|
@ -29,7 +29,7 @@ PanelWindow {
|
||||||
|
|
||||||
// Left
|
// Left
|
||||||
RowLayout {
|
RowLayout {
|
||||||
spacing: 15
|
spacing: 10
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
top: parent.top
|
top: parent.top
|
||||||
|
|
@ -42,11 +42,13 @@ PanelWindow {
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
Layout.fillWidth: false
|
Layout.fillWidth: false
|
||||||
Layout.preferredHeight: parent.height
|
Layout.preferredHeight: parent.height
|
||||||
Layout.margins: 4
|
Layout.leftMargin: 4
|
||||||
}
|
}
|
||||||
|
|
||||||
Widgets.Separator {
|
Widgets.Separator {
|
||||||
visible: activeWindow.visible
|
visible: activeWindow.visible
|
||||||
|
Layout.leftMargin: 5
|
||||||
|
Layout.rightMargin: 5
|
||||||
}
|
}
|
||||||
|
|
||||||
ActiveWindow {
|
ActiveWindow {
|
||||||
|
|
@ -63,7 +65,7 @@ PanelWindow {
|
||||||
top: parent.top
|
top: parent.top
|
||||||
bottom: parent.bottom
|
bottom: parent.bottom
|
||||||
right: parent.right
|
right: parent.right
|
||||||
rightMargin: 10
|
rightMargin: 4
|
||||||
}
|
}
|
||||||
|
|
||||||
SysTray.SysTray {
|
SysTray.SysTray {
|
||||||
|
|
@ -76,31 +78,27 @@ PanelWindow {
|
||||||
// bar: root
|
// bar: root
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// Text {
|
Text {
|
||||||
// text: "home"
|
text: "home"
|
||||||
// color: "white"
|
color: "white"
|
||||||
// font.family: "Material Symbols Rounded"
|
font.family: "Material Symbols Rounded"
|
||||||
// renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
// textFormat: Text.PlainText
|
textFormat: Text.PlainText
|
||||||
// font.pointSize: 12
|
font.pointSize: 14
|
||||||
//
|
|
||||||
// font.variableAxes: {
|
font.variableAxes: {
|
||||||
// "FILL": 1
|
"FILL": 0
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
BatteryIndicator {
|
BatteryIndicator {
|
||||||
id: batteryIndicator
|
id: batteryIndicator
|
||||||
popup: root.popup
|
popup: root.popup
|
||||||
}
|
}
|
||||||
|
|
||||||
// Control.Button {
|
|
||||||
// bar: root
|
|
||||||
// screen: root
|
|
||||||
// }
|
|
||||||
|
|
||||||
Widgets.Separator {
|
Widgets.Separator {
|
||||||
Layout.leftMargin: 10
|
Layout.leftMargin: 5
|
||||||
|
Layout.rightMargin: 5
|
||||||
}
|
}
|
||||||
|
|
||||||
Clock {
|
Clock {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue