Initial Commit

This commit is contained in:
Amaro Lopes
2025-09-21 00:47:06 -03:00
commit 2445e21f0b
11 changed files with 795 additions and 0 deletions

18
Services/Time.qml Normal file
View File

@@ -0,0 +1,18 @@
pragma Singleton
import Quickshell
Singleton {
id: timeRoot
readonly property string time: {
Qt.formatDateTime(clock.date, "hh:mm");
}
SystemClock {
id: clock
precision: SystemClock.Seconds
}
}