From fa46217512b75689c1d4f93160a94bd06b705c3a Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 27 Nov 2025 02:23:52 +0000 Subject: [PATCH 1/2] feat: remove native titlebar on Linux for custom titlebar support Co-Authored-By: yujonglee --- plugins/windows/src/window/v1.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/windows/src/window/v1.rs b/plugins/windows/src/window/v1.rs index 251c5765b4..d9390de413 100644 --- a/plugins/windows/src/window/v1.rs +++ b/plugins/windows/src/window/v1.rs @@ -76,6 +76,11 @@ impl AppWindow { builder = builder.decorations(false); } + #[cfg(target_os = "linux")] + { + builder = builder.decorations(false); + } + builder } } From f7a1d1e8718b052947a22260e1e16528600a8594 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 27 Nov 2025 02:26:30 +0000 Subject: [PATCH 2/2] fix: remove unused cn import in search component Co-Authored-By: yujonglee --- apps/desktop/src/components/main/sidebar/search/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/desktop/src/components/main/sidebar/search/index.tsx b/apps/desktop/src/components/main/sidebar/search/index.tsx index d236316e06..39f9da674f 100644 --- a/apps/desktop/src/components/main/sidebar/search/index.tsx +++ b/apps/desktop/src/components/main/sidebar/search/index.tsx @@ -1,7 +1,5 @@ import { SearchXIcon } from "lucide-react"; -import { cn } from "@hypr/utils"; - import { type GroupedSearchResults, useSearch,