summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/Config.qml1
-rw-r--r--config/LauncherConfig.qml1
2 files changed, 2 insertions, 0 deletions
diff --git a/config/Config.qml b/config/Config.qml
index 74e3f45..7851c3b 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -297,6 +297,7 @@ Singleton {
enableDangerousActions: launcher.enableDangerousActions,
dragThreshold: launcher.dragThreshold,
vimKeybinds: launcher.vimKeybinds,
+ favouriteApps: launcher.favouriteApps,
hiddenApps: launcher.hiddenApps,
useFuzzy: {
apps: launcher.useFuzzy.apps,
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml
index 7f9c788..d9e3a73 100644
--- a/config/LauncherConfig.qml
+++ b/config/LauncherConfig.qml
@@ -10,6 +10,7 @@ JsonObject {
property bool enableDangerousActions: false // Allow actions that can cause losing data, like shutdown, reboot and logout
property int dragThreshold: 50
property bool vimKeybinds: false
+ property list<string> favouriteApps: []
property list<string> hiddenApps: []
property UseFuzzy useFuzzy: UseFuzzy {}
property Sizes sizes: Sizes {}