summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/BackgroundConfig.qml31
-rw-r--r--config/Config.qml27
-rw-r--r--config/LauncherConfig.qml3
-rw-r--r--config/UtilitiesConfig.qml1
4 files changed, 0 insertions, 62 deletions
diff --git a/config/BackgroundConfig.qml b/config/BackgroundConfig.qml
index b8a8ad9..9bcca87 100644
--- a/config/BackgroundConfig.qml
+++ b/config/BackgroundConfig.qml
@@ -2,35 +2,4 @@ import Quickshell.Io
JsonObject {
property bool enabled: 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 b5e89f9..8988f90 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -148,29 +148,6 @@ Singleton {
function serializeBackground(): var {
return {
enabled: background.enabled,
- 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
- }
};
}
@@ -286,9 +263,6 @@ Singleton {
hiddenApps: launcher.hiddenApps,
useFuzzy: {
apps: launcher.useFuzzy.apps,
- schemes: launcher.useFuzzy.schemes,
- variants: launcher.useFuzzy.variants,
- wallpapers: launcher.useFuzzy.wallpapers
},
sizes: {
itemWidth: launcher.sizes.itemWidth,
@@ -378,7 +352,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 896882f..6ab44d1 100644
--- a/config/LauncherConfig.qml
+++ b/config/LauncherConfig.qml
@@ -13,9 +13,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 cf46446..0840886 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