1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

feat(Notepad): add notepad desktop entry & IPC commands file handling

This commit is contained in:
purian23
2026-07-04 16:10:56 -04:00
parent bfda5f2d66
commit 81a4d3b4e0
23 changed files with 129 additions and 1 deletions
@@ -787,6 +787,8 @@ Item {
if (isCategoryFiltered) {
var rawApps = AppSearchService.getAppsInCategory(appCategory);
for (var i = 0; i < rawApps.length; i++) {
if (AppSearchService.isShadowedByCoreApp(rawApps[i]))
continue;
allItems.push(getOrTransformApp(rawApps[i]));
}
// Also include core apps (DMS Settings etc.) that match this category
@@ -1182,6 +1184,8 @@ Item {
var items = [];
for (var i = 0; i < apps.length; i++) {
if (AppSearchService.isShadowedByCoreApp(apps[i]))
continue;
items.push(getOrTransformApp(apps[i]));
}