nixos/config/quickshell/Date.qml

35 lines
486 B
QML
Raw Normal View History

2025-01-10 19:52:14 +04:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import Quickshell
import Quickshell.Io
ListView {
id: root
height: 70
width: 60
property date currentDate: new Date()
Item {
width: parent.width
height: parent.height
anchors.centerIn: parent
Rectangle {
width: 60
height: 65
radius: 3
Text {
Layout.alignment: Qt.AlignHCenter
anchors.centerIn: parent
font.pointSize: 20
color: "black"
}
}
}
}