* Adds a simple desktop clock * Adds ability to change color * Sets the desktop clock to be disabled by default * Improves desktop clock code based on feedback * Disable the clock by default * Fixes config of background clock * Removes the timer for the desktop clock --------- Co-authored-by: Kaj Giesbers <kajgiesbers@gmail.com>
10 lines
210 B
QML
10 lines
210 B
QML
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property bool enabled: true
|
|
property DesktopClock desktopClock: DesktopClock {}
|
|
|
|
component DesktopClock: JsonObject {
|
|
property bool enabled: false
|
|
}
|
|
}
|