summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/BackgroundConfig.qml14
-rw-r--r--config/Config.qml14
-rw-r--r--config/LauncherConfig.qml3
-rw-r--r--config/UtilitiesConfig.qml1
4 files changed, 0 insertions, 32 deletions
diff --git a/config/BackgroundConfig.qml b/config/BackgroundConfig.qml
index ec6b299..9bcca87 100644
--- a/config/BackgroundConfig.qml
+++ b/config/BackgroundConfig.qml
@@ -2,18 +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
- }
-
- 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 cc268e9..8927a16 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -147,16 +147,6 @@ Singleton {
function serializeBackground(): var {
return {
enabled: background.enabled,
- desktopClock: {
- enabled: background.desktopClock.enabled
- },
- visualiser: {
- enabled: background.visualiser.enabled,
- autoHide: background.visualiser.autoHide,
- blur: background.visualiser.blur,
- rounding: background.visualiser.rounding,
- spacing: background.visualiser.spacing
- }
};
}
@@ -271,9 +261,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,
@@ -363,7 +350,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 5779d88..64eca91 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