diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/Config.qml | 6 | ||||
| -rw-r--r-- | config/LauncherConfig.qml | 6 | ||||
| -rw-r--r-- | config/ServiceConfig.qml | 1 | ||||
| -rw-r--r-- | config/UserPaths.qml | 1 |
4 files changed, 2 insertions, 12 deletions
diff --git a/config/Config.qml b/config/Config.qml index 1d9f238..9f66c73 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -194,9 +194,7 @@ Singleton { dragThreshold: launcher.dragThreshold, vimKeybinds: launcher.vimKeybinds, hiddenApps: launcher.hiddenApps, - useFuzzy: { - apps: launcher.useFuzzy.apps, - }, + useFuzzy: launcher.useFuzzy, sizes: { itemWidth: launcher.sizes.itemWidth, itemHeight: launcher.sizes.itemHeight, @@ -307,7 +305,6 @@ Singleton { visualiserBars: services.visualiserBars, audioIncrement: services.audioIncrement, maxVolume: services.maxVolume, - smartScheme: services.smartScheme, defaultPlayer: services.defaultPlayer, playerAliases: services.playerAliases }; @@ -316,7 +313,6 @@ Singleton { function serializePaths(): var { return { wallpaper: paths.wallpaper, - face: paths.face, sessionGif: paths.sessionGif, mediaGif: paths.mediaGif }; diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index 6ab44d1..72f14cf 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -8,13 +8,9 @@ JsonObject { property int dragThreshold: 50 property bool vimKeybinds: false property list<string> hiddenApps: [] - property UseFuzzy useFuzzy: UseFuzzy {} + property bool useFuzzy: false property Sizes sizes: Sizes {} - component UseFuzzy: JsonObject { - property bool apps: false - } - component Sizes: JsonObject { property int itemWidth: 600 property int itemHeight: 57 diff --git a/config/ServiceConfig.qml b/config/ServiceConfig.qml index d083b7a..0bd9145 100644 --- a/config/ServiceConfig.qml +++ b/config/ServiceConfig.qml @@ -10,7 +10,6 @@ JsonObject { property real audioIncrement: 0.1 property real brightnessIncrement: 0.1 property real maxVolume: 1.0 - property bool smartScheme: true property string defaultPlayer: "Spotify" property list<var> playerAliases: [ { diff --git a/config/UserPaths.qml b/config/UserPaths.qml index 0daa4e1..1ff6697 100644 --- a/config/UserPaths.qml +++ b/config/UserPaths.qml @@ -3,7 +3,6 @@ import Quickshell.Io JsonObject { property string wallpaper: "" - property string face: "" property string sessionGif: "root:/assets/len.gif" property string mediaGif: "root:/assets/bongocat.gif" } |