chore: format code according to qmlformat

This commit is contained in:
Nydragon 2024-08-23 13:07:04 +02:00
parent 423c2ba668
commit 7fb870b389
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
5 changed files with 17 additions and 19 deletions

View file

@ -1,3 +0,0 @@
[General]
IndentWidth=4
NewlineType=native

View file

@ -4,19 +4,19 @@ import Quickshell.Io // for process
Scope {
Variants {
model : Quickshell.screens
// the screen from the screens list will be injected into this property
model: Quickshell.screens
// the screen from the screens list will be injected into this property
PanelWindow {
property var modelData
screen: modelData
anchors {
top : true
left : true
bottom : true
top: true
left: true
bottom: true
}
width : 20
width: 20
// the ClockWidget type we just created
// the ClockWidget type we just created
ClockWidget {
anchors.centerIn: parent
}

View file

@ -1,5 +1,5 @@
import QtQuick
Text {
text: Time.time
text: Time.time
}

View file

@ -8,10 +8,10 @@ Singleton {
property var date: new Date()
property string time: date.toLocaleString(Qt.locale())
Timer {
interval: 1000
running: true
repeat: true
onTriggered: date = new Date()
}
Timer {
interval: 1000
running: true
repeat: true
onTriggered: date = new Date()
}
}

View file

@ -1,5 +1,6 @@
import Quickshell // for ShellRoot and PanelWindow
import Quickshell
// for ShellRoot and PanelWindow
ShellRoot {
Bar {}
Bar {}
}