From de69d6fad86c05ac07fed7df967e6bd6ebaa15f1 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Fri, 17 Apr 2026 18:45:42 -0500 Subject: [PATCH] feat: hide the launcher by default and add an IpcHandler to show it --- qml/Launcher.qml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/qml/Launcher.qml b/qml/Launcher.qml index bb48146..f0ae5ed 100644 --- a/qml/Launcher.qml +++ b/qml/Launcher.qml @@ -1,6 +1,7 @@ import "nix" import Quickshell +import Quickshell.Io import Quickshell.Wayland import QtQuick @@ -14,6 +15,8 @@ import QtQuick.Layouts PanelWindow { id: win + visible: false + anchors { top: true bottom: true @@ -231,4 +234,12 @@ PanelWindow { appList.clear(); } } + + IpcHandler { + target: "launcher" + + function search(): void { + win.visible = true; + } + } }