From f9f276e2dafd8718635ad4657f9b4decc420edf9 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Fri, 27 Mar 2026 00:11:05 +0530 Subject: search bar fixes + i no longer need side bar + cloudflare warp + lazydocker --- quickshell/AppLauncher.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'quickshell/AppLauncher.qml') diff --git a/quickshell/AppLauncher.qml b/quickshell/AppLauncher.qml index 5feab81..a4f1ffd 100644 --- a/quickshell/AppLauncher.qml +++ b/quickshell/AppLauncher.qml @@ -35,12 +35,14 @@ Rectangle { Keys.onReturnPressed: { if (hoverIndex >= 0 && hoverIndex < appListModel.count) { launchApp(appListModel.get(hoverIndex).appCommand) + console.log(appListModel.get(hoverIndex).appCommand) } } Keys.onEnterPressed: { if (hoverIndex >= 0 && hoverIndex < appListModel.count) { launchApp(appListModel.get(hoverIndex).appCommand) + console.log(appListModel.get(hoverIndex).appCommand) } } @@ -64,6 +66,16 @@ Rectangle { const parts = line.split('|'); if (parts.length < 4) continue; + + if (parts[0].toLowerCase().includes("zen")) { + apps.push({ + appName: "Zen browser", + appDescription: "it's zen", + appIcon: "nigga", + appCommand: "zen" + }); + } + apps.push({ appName: parts[0], appDescription: parts[1], -- cgit v1.2.3