Files
nixos-dotfiles/modules/desktop/quickshell/config/components/bar/Clock.qml
2025-04-13 15:09:14 +08:00

17 lines
284 B
QML

import QtQuick
import QtQuick.Layouts
import "../../utils"
Rectangle {
Layout.fillHeight: true
color: "transparent"
implicitWidth: clockText.width
Text {
id: clockText
text: Time.time
color: Colors.fg
anchors.centerIn: parent
}
}