diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-09 15:15:49 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 09:24:54 -0400 |
| commit | 50bbd6f464fd32d3ce345681c6448ef963fb6e81 (patch) | |
| tree | d29ac42d5faaf2c4beb3b8ef3f138729a09de7bf /config | |
| parent | only show active workspaces, fix colors (diff) | |
| download | caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.tar.gz caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.tar.bz2 caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.zip | |
remove more stuffff
Diffstat (limited to 'config')
| -rw-r--r-- | config/BackgroundConfig.qml | 32 | ||||
| -rw-r--r-- | config/Config.qml | 28 | ||||
| -rw-r--r-- | config/LauncherConfig.qml | 3 | ||||
| -rw-r--r-- | config/UtilitiesConfig.qml | 1 |
4 files changed, 0 insertions, 64 deletions
diff --git a/config/BackgroundConfig.qml b/config/BackgroundConfig.qml index 8383f52..9bcca87 100644 --- a/config/BackgroundConfig.qml +++ b/config/BackgroundConfig.qml @@ -2,36 +2,4 @@ import Quickshell.Io JsonObject { property bool enabled: true - property bool wallpaperEnabled: true - property DesktopClock desktopClock: DesktopClock {} - property Visualiser visualiser: Visualiser {} - - component DesktopClock: JsonObject { - property bool enabled: false - property real scale: 1.0 - property string position: "bottom-right" - property bool invertColors: false - property DesktopClockBackground background: DesktopClockBackground {} - property DesktopClockShadow shadow: DesktopClockShadow {} - } - - component DesktopClockBackground: JsonObject { - property bool enabled: false - property real opacity: 0.7 - property bool blur: true - } - - component DesktopClockShadow: JsonObject { - property bool enabled: true - property real opacity: 0.7 - property real blur: 0.4 - } - - component Visualiser: JsonObject { - property bool enabled: false - property bool autoHide: true - property bool blur: false - property real rounding: 1 - property real spacing: 1 - } } diff --git a/config/Config.qml b/config/Config.qml index dbf73a3..de88c05 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -121,30 +121,6 @@ Singleton { function serializeBackground(): var { return { enabled: background.enabled, - wallpaperEnabled: background.wallpaperEnabled, - desktopClock: { - enabled: background.desktopClock.enabled, - scale: background.desktopClock.scale, - position: background.desktopClock.position, - invertColors: background.desktopClock.invertColors, - background: { - enabled: background.desktopClock.background.enabled, - opacity: background.desktopClock.background.opacity, - blur: background.desktopClock.background.blur - }, - shadow: { - enabled: background.desktopClock.shadow.enabled, - opacity: background.desktopClock.shadow.opacity, - blur: background.desktopClock.shadow.blur - } - }, - visualiser: { - enabled: background.visualiser.enabled, - autoHide: background.visualiser.autoHide, - blur: background.visualiser.blur, - rounding: background.visualiser.rounding, - spacing: background.visualiser.spacing - } }; } @@ -252,9 +228,6 @@ Singleton { hiddenApps: launcher.hiddenApps, useFuzzy: { apps: launcher.useFuzzy.apps, - schemes: launcher.useFuzzy.schemes, - variants: launcher.useFuzzy.variants, - wallpapers: launcher.useFuzzy.wallpapers }, actions: launcher.actions sizes: { @@ -326,7 +299,6 @@ Singleton { toasts: { configLoaded: utilities.toasts.configLoaded, chargingChanged: utilities.toasts.chargingChanged, - gameModeChanged: utilities.toasts.gameModeChanged, dndChanged: utilities.toasts.dndChanged, audioOutputChanged: utilities.toasts.audioOutputChanged, audioInputChanged: utilities.toasts.audioInputChanged, diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index 8a6dff0..f3f4bc7 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -14,9 +14,6 @@ JsonObject { component UseFuzzy: JsonObject { property bool apps: false - property bool schemes: false - property bool variants: false - property bool wallpapers: false } component Sizes: JsonObject { diff --git a/config/UtilitiesConfig.qml b/config/UtilitiesConfig.qml index 4d1dd6e..e102526 100644 --- a/config/UtilitiesConfig.qml +++ b/config/UtilitiesConfig.qml @@ -16,7 +16,6 @@ JsonObject { component Toasts: JsonObject { property bool configLoaded: true property bool chargingChanged: true - property bool gameModeChanged: true property bool dndChanged: true property bool audioOutputChanged: true property bool audioInputChanged: true |