
Aesthetic Clock
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
heimdall
7 months ago
Report
Refused
7 months ago
Report
baltolkien
7 months ago
Report
Refused
7 months ago
Just a tip: avoid using a timer to update the canvas, you can just set a property such:
readonly property date currentDateTime: timeSource.data.Local ? timeSource.data.Local.DateTime : new Date()
and then:
onCurrentDateTimeChanged:
{
canvas.requestPaint()
}
You don't even need timeChanged(), using the above property you can show the time like this:
Label {
text: currentDateTime.getHours() + ":" + ('0'+ currentDateTime.getMinutes()).slice(-2);
....
It would be nice with a transparent background and customizable font (e.g: set outline and so on).
Report
aeregeneratel38
7 months ago
Report
Refused
7 months ago
Report
aeregeneratel38
7 months ago
Report
baltolkien
7 months ago
Report
aeregeneratel38
7 months ago
Report
baltolkien
7 months ago
I try to install this clock and I have this error:
Error loadinf QML file: file:///home/baltolkien/.local/share/plasma/plasmoids/org.kde.plasma.aestheticclock/contents/ui/main.qml:13:1: module "org.kde.plasma.private.aestheticclock" is not installed
Any suggestion?
Report
aeregeneratel38
7 months ago
Report