mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
quickshell and hyprland additions
This commit is contained in:
20
.config/quickshell/nucleus-shell/services/Time.qml
Executable file
20
.config/quickshell/nucleus-shell/services/Time.qml
Executable file
@@ -0,0 +1,20 @@
|
||||
pragma Singleton
|
||||
import Quickshell
|
||||
import QtQuick
|
||||
|
||||
Singleton {
|
||||
id: root
|
||||
|
||||
property alias date: clock.date // expose raw date/time
|
||||
readonly property SystemClock clock: clock
|
||||
|
||||
SystemClock {
|
||||
id: clock
|
||||
precision: SystemClock.Seconds
|
||||
}
|
||||
|
||||
// Helper function if you still want formatting ability:
|
||||
function format(fmt) {
|
||||
return Qt.formatDateTime(clock.date, fmt)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user