feat: inital commit

This commit is contained in:
tux
2026-02-26 20:45:55 +05:30
commit a60f95749d
34 changed files with 216 additions and 0 deletions

16
Time.qml Normal file
View File

@@ -0,0 +1,16 @@
pragma Singleton
import Quickshell
import QtQuick
Singleton {
id: root
readonly property string time: {
Qt.formatDateTime(clock.date, "hh:mm AP");
}
SystemClock {
id: clock
precision: SystemClock.Minutes
}
}