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 {
|
||||
id: jsonAdapter
|
||||
|
||||
property QtObject settings: QtObject {
|
||||
property JsonObject settings: JsonObject {
|
||||
property int barHeight: 25
|
||||
property string wallpaperUrl: Qt.resolvedUrl("root:resources/wallpapers/pixelart0.jpg")
|
||||
property string colorScheme: "scheme-fruit-salad"
|
||||
|
|
|
|||
40
bar/Bar.qml
40
bar/Bar.qml
|
|
@ -29,7 +29,7 @@ PanelWindow {
|
|||
|
||||
// Left
|
||||
RowLayout {
|
||||
spacing: 15
|
||||
spacing: 10
|
||||
|
||||
anchors {
|
||||
top: parent.top
|
||||
|
|
@ -42,11 +42,13 @@ PanelWindow {
|
|||
screen: root.screen
|
||||
Layout.fillWidth: false
|
||||
Layout.preferredHeight: parent.height
|
||||
Layout.margins: 4
|
||||
Layout.leftMargin: 4
|
||||
}
|
||||
|
||||
Widgets.Separator {
|
||||
visible: activeWindow.visible
|
||||
Layout.leftMargin: 5
|
||||
Layout.rightMargin: 5
|
||||
}
|
||||
|
||||
ActiveWindow {
|
||||
|
|
@ -63,7 +65,7 @@ PanelWindow {
|
|||
top: parent.top
|
||||
bottom: parent.bottom
|
||||
right: parent.right
|
||||
rightMargin: 10
|
||||
rightMargin: 4
|
||||
}
|
||||
|
||||
SysTray.SysTray {
|
||||
|
|
@ -76,31 +78,27 @@ PanelWindow {
|
|||
// bar: root
|
||||
// }
|
||||
|
||||
// Text {
|
||||
// text: "home"
|
||||
// color: "white"
|
||||
// font.family: "Material Symbols Rounded"
|
||||
// renderType: Text.NativeRendering
|
||||
// textFormat: Text.PlainText
|
||||
// font.pointSize: 12
|
||||
//
|
||||
// font.variableAxes: {
|
||||
// "FILL": 1
|
||||
// }
|
||||
// }
|
||||
Text {
|
||||
text: "home"
|
||||
color: "white"
|
||||
font.family: "Material Symbols Rounded"
|
||||
renderType: Text.NativeRendering
|
||||
textFormat: Text.PlainText
|
||||
font.pointSize: 14
|
||||
|
||||
font.variableAxes: {
|
||||
"FILL": 0
|
||||
}
|
||||
}
|
||||
|
||||
BatteryIndicator {
|
||||
id: batteryIndicator
|
||||
popup: root.popup
|
||||
}
|
||||
|
||||
// Control.Button {
|
||||
// bar: root
|
||||
// screen: root
|
||||
// }
|
||||
|
||||
Widgets.Separator {
|
||||
Layout.leftMargin: 10
|
||||
Layout.leftMargin: 5
|
||||
Layout.rightMargin: 5
|
||||
}
|
||||
|
||||
Clock {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue