diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-22 20:50:39 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-22 20:50:39 +1000 |
| commit | 2a652d549a56b74cdf5134ffee7d84ef5e96823f (patch) | |
| tree | 27ccdd549bcd865f34eadaddddfe348fd1dbf9bc /config | |
| parent | systemusage: use sensors for cpu temps (diff) | |
| download | caelestia-shell-2a652d549a56b74cdf5134ffee7d84ef5e96823f.tar.gz caelestia-shell-2a652d549a56b74cdf5134ffee7d84ef5e96823f.tar.bz2 caelestia-shell-2a652d549a56b74cdf5134ffee7d84ef5e96823f.zip | |
feat: lock screen
Diffstat (limited to 'config')
| -rw-r--r-- | config/Config.qml | 2 | ||||
| -rw-r--r-- | config/LockConfig.qml | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/config/Config.qml b/config/Config.qml index f4c2500..e655400 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -15,6 +15,7 @@ Singleton { property alias osd: adapter.osd property alias session: adapter.session property alias winfo: adapter.winfo + property alias lock: adapter.lock property alias paths: adapter.paths FileView { @@ -34,6 +35,7 @@ Singleton { property JsonObject osd: OsdConfig {} property JsonObject session: SessionConfig {} property JsonObject winfo: WInfoConfig {} + property JsonObject lock: LockConfig {} property JsonObject paths: UserPaths {} } } diff --git a/config/LockConfig.qml b/config/LockConfig.qml new file mode 100644 index 0000000..a95efa9 --- /dev/null +++ b/config/LockConfig.qml @@ -0,0 +1,12 @@ +import Quickshell.Io + +JsonObject { + property JsonObject sizes: JsonObject { + property real border: 0.1 + property int clockWidth: 800 + property int clockHeight: 200 + property int inputWidth: 600 + property int inputHeight: 200 + property int faceSize: 100 + } +} |