diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-11 15:16:34 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-11 15:16:34 +1000 |
| commit | 44c0e1b1164aa44bf0cc1c639a44edcff9fb3355 (patch) | |
| tree | 06febd08bee29797baedb575b87ce2af6e73e6bd /modules/launcher/services/Apps.qml | |
| parent | plugin: use qt typedefs for fixed ints (diff) | |
| download | caelestia-shell-44c0e1b1164aa44bf0cc1c639a44edcff9fb3355.tar.gz caelestia-shell-44c0e1b1164aa44bf0cc1c639a44edcff9fb3355.tar.bz2 caelestia-shell-44c0e1b1164aa44bf0cc1c639a44edcff9fb3355.zip | |
plugin/appdb: fix persistence
Diffstat (limited to 'modules/launcher/services/Apps.qml')
| -rw-r--r-- | modules/launcher/services/Apps.qml | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/launcher/services/Apps.qml b/modules/launcher/services/Apps.qml index b4b766d..02d997a 100644 --- a/modules/launcher/services/Apps.qml +++ b/modules/launcher/services/Apps.qml @@ -74,22 +74,4 @@ Searcher { path: `${Paths.state}/apps.sqlite` entries: DesktopEntries.applications.values.filter(a => !Config.launcher.hiddenApps.includes(a.id)) } - - // Variants { - // id: variants - - // model: [...DesktopEntries.applications.values].filter(a => !Config.launcher.hiddenApps.includes(a.id)).sort((a, b) => a.name.localeCompare(b.name)) - - // QtObject { - // required property DesktopEntry modelData - // readonly property string id: modelData.id - // readonly property string name: modelData.name - // readonly property string desc: modelData.comment - // readonly property string execString: modelData.execString - // readonly property string wmClass: modelData.startupClass - // readonly property string genericName: modelData.genericName - // readonly property string categories: modelData.categories.join(" ") - // readonly property string keywords: modelData.keywords.join(" ") - // } - // } } |