chore: initial commit

Initial commit
This commit is contained in:
2026-04-16 17:15:42 -05:00
commit f8ed47acff
16 changed files with 1863 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import "nix"
pragma Singleton
import Quickshell
import QtQuick
Singleton {
id: root
readonly property string time: {
Qt.formatDateTime(clock.date, "MM/dd/yy hh:mm:ss AP")
}
SystemClock {
id: clock
precision: SystemClock.Seconds
}
}