diff --git a/configuration/modules/dots/quick_shell/quick_config/config/shell.qml b/configuration/modules/dots/quick_shell/quick_config/config/shell.qml index 8022ad9..0f4f2eb 100644 --- a/configuration/modules/dots/quick_shell/quick_config/config/shell.qml +++ b/configuration/modules/dots/quick_shell/quick_config/config/shell.qml @@ -1,22 +1,25 @@ import Quickshell import QtQuick -PanelWindow { - anchors.top: true - anchors.left: true - anchors.bottom: true - implicitWidth: 50 - color: "#1a1b26" +ShellRoot { + id: root + PanelWindow { + anchors.top: true + anchors.left: true + anchors.bottom: true + implicitWidth: 50 + color: "#1a1b26" - SystemClock { - id: clock - precision: SystemClock.Minutes - } + SystemClock { + id: clock + precision: SystemClock.Minutes + } - Text { - anchors.centerIn: parent - color: "#FFFFFF" - font.pixelSize: 14 - text: Qt.formatDateTime(clock.date, "hh\nmm") + Text { + anchors.centerIn: parent + color: "#FFFFFF" + font.pixelSize: 14 + text: Qt.formatDateTime(clock.date, "hh\nmm") + } } }