diff options
| author | Evertiro <dgriffiths@widgit.io> | 2026-01-16 23:58:06 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-17 16:58:06 +1100 |
| commit | 96942d5ff38698513f0330618073dbdf2af1bd59 (patch) | |
| tree | 4982d1679a558519e4bc443431bb0939f0e6680d /config | |
| parent | utilities: fix fullscreen record (#1085) (diff) | |
| download | caelestia-shell-96942d5ff38698513f0330618073dbdf2af1bd59.tar.gz caelestia-shell-96942d5ff38698513f0330618073dbdf2af1bd59.tar.bz2 caelestia-shell-96942d5ff38698513f0330618073dbdf2af1bd59.zip | |
sysinfo: allow overriding OS icon (#1091)
* Allow overriding OS icon
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
* Support icons and live reloading
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
* isDefaultLogo should default to true
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
---------
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
Diffstat (limited to 'config')
| -rw-r--r-- | config/Config.qml | 1 | ||||
| -rw-r--r-- | config/GeneralConfig.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/Config.qml b/config/Config.qml index b875eef..45717d1 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -126,6 +126,7 @@ Singleton { function serializeGeneral(): var { return { + logo: general.logo, apps: { terminal: general.apps.terminal, audio: general.apps.audio, diff --git a/config/GeneralConfig.qml b/config/GeneralConfig.qml index eecca01..52ef0de 100644 --- a/config/GeneralConfig.qml +++ b/config/GeneralConfig.qml @@ -1,6 +1,7 @@ import Quickshell.Io JsonObject { + property string logo: "" property Apps apps: Apps {} property Idle idle: Idle {} property Battery battery: Battery {} |