chore: format code according to qmlformat
This commit is contained in:
parent
423c2ba668
commit
7fb870b389
5 changed files with 17 additions and 19 deletions
|
@ -1,3 +0,0 @@
|
||||||
[General]
|
|
||||||
IndentWidth=4
|
|
||||||
NewlineType=native
|
|
14
src/Bar.qml
14
src/Bar.qml
|
@ -4,19 +4,19 @@ import Quickshell.Io // for process
|
||||||
|
|
||||||
Scope {
|
Scope {
|
||||||
Variants {
|
Variants {
|
||||||
model : Quickshell.screens
|
model: Quickshell.screens
|
||||||
// the screen from the screens list will be injected into this property
|
// the screen from the screens list will be injected into this property
|
||||||
PanelWindow {
|
PanelWindow {
|
||||||
property var modelData
|
property var modelData
|
||||||
screen: modelData
|
screen: modelData
|
||||||
anchors {
|
anchors {
|
||||||
top : true
|
top: true
|
||||||
left : true
|
left: true
|
||||||
bottom : true
|
bottom: true
|
||||||
}
|
}
|
||||||
width : 20
|
width: 20
|
||||||
|
|
||||||
// the ClockWidget type we just created
|
// the ClockWidget type we just created
|
||||||
ClockWidget {
|
ClockWidget {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: Time.time
|
text: Time.time
|
||||||
}
|
}
|
||||||
|
|
12
src/Time.qml
12
src/Time.qml
|
@ -8,10 +8,10 @@ Singleton {
|
||||||
property var date: new Date()
|
property var date: new Date()
|
||||||
property string time: date.toLocaleString(Qt.locale())
|
property string time: date.toLocaleString(Qt.locale())
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
interval: 1000
|
interval: 1000
|
||||||
running: true
|
running: true
|
||||||
repeat: true
|
repeat: true
|
||||||
onTriggered: date = new Date()
|
onTriggered: date = new Date()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import Quickshell // for ShellRoot and PanelWindow
|
import Quickshell
|
||||||
|
|
||||||
|
// for ShellRoot and PanelWindow
|
||||||
ShellRoot {
|
ShellRoot {
|
||||||
Bar {}
|
Bar {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue