30 lines
612 B
QML
30 lines
612 B
QML
import QtQuick
|
|
|
|
// import Quickshell
|
|
|
|
Item {
|
|
Text {
|
|
x: 1064 + 117 - 75
|
|
y: 37 + 9 + 1
|
|
color: "#ffffff"
|
|
text: "D$ 4294"
|
|
font.pixelSize: 16 * 4 // nearest to 72
|
|
antialiasing: false
|
|
font.family: "8bitoperator JVE"
|
|
}
|
|
|
|
// SystemClock {
|
|
// id: clock
|
|
// precision: SystemClock.Minutes
|
|
// }
|
|
|
|
// Text {
|
|
// x: 1064 + 117
|
|
// y: 37 + 9 + 64
|
|
// color: "#777777"
|
|
// text: Qt.formatDateTime(clock.date, "dd/MM - hh:mm")
|
|
// font.pixelSize: 32
|
|
// font.family: "8bitoperator JVE"
|
|
// }
|
|
}
|