1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-08 12:13:31 -04:00

feat(Spotlight): Add a New Lightweight Spotlight style launcher option

This commit is contained in:
purian23
2026-05-16 17:34:56 -04:00
parent 05c7a77c8b
commit 9f2ae6241e
11 changed files with 1496 additions and 8 deletions
@@ -13,6 +13,7 @@ Popup {
property var controller: null
property var searchField: null
property var parentHandler: null
property bool allowEditActions: true
signal hideRequested
signal editAppRequested(var app)
@@ -112,12 +113,14 @@ Popup {
text: I18n.tr("Hide App"),
action: hideCurrentApp
});
items.push({
type: "item",
icon: "edit",
text: I18n.tr("Edit App"),
action: editCurrentApp
});
if (allowEditActions) {
items.push({
type: "item",
icon: "edit",
text: I18n.tr("Edit App"),
action: editCurrentApp
});
}
}
if (item?.actions && item.actions.length > 0) {