diff --git a/src/.qmlformat.ini b/src/.qmlformat.ini deleted file mode 100644 index 7dd50c9..0000000 --- a/src/.qmlformat.ini +++ /dev/null @@ -1,3 +0,0 @@ -[General] -IndentWidth=4 -NewlineType=native diff --git a/src/Bar.qml b/src/Bar.qml index a32da31..db81a25 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -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 } diff --git a/src/ClockWidget.qml b/src/ClockWidget.qml index 10d8c98..c8899a0 100644 --- a/src/ClockWidget.qml +++ b/src/ClockWidget.qml @@ -1,5 +1,5 @@ import QtQuick Text { - text: Time.time + text: Time.time } diff --git a/src/Time.qml b/src/Time.qml index 3dc2ab5..80960f5 100644 --- a/src/Time.qml +++ b/src/Time.qml @@ -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() + } } diff --git a/src/shell.qml b/src/shell.qml index 5952d93..08830ec 100644 --- a/src/shell.qml +++ b/src/shell.qml @@ -1,5 +1,6 @@ -import Quickshell // for ShellRoot and PanelWindow +import Quickshell +// for ShellRoot and PanelWindow ShellRoot { - Bar {} + Bar {} }