From a743715a841a09827e96e9eeb680c7c4074268e4 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Mon, 21 Apr 2025 18:11:02 -0300 Subject: [PATCH] :sparkles: ags(apps-window): add placeholder text to search entry --- ags/window/AppsWindow.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ags/window/AppsWindow.ts b/ags/window/AppsWindow.ts index e45c5c9..d20cfa7 100644 --- a/ags/window/AppsWindow.ts +++ b/ags/window/AppsWindow.ts @@ -27,6 +27,7 @@ export const AppsWindow = (mon: number): (Widget.Window) => { const entry = new Widget.Entry({ className: "entry", halign: Gtk.Align.CENTER, + placeholderText: "Start typing...", primary_icon_name: "system-search", onChanged: (entry) => searchString.set(entry.text), onActivate: () => flowbox.get_selected_children()?.[0]?.get_child()?.activate()