From 28b68b4dc4fc38b7a3027f5d5bcad7c27aae003f Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Thu, 25 Jun 2026 16:20:29 -0500 Subject: [PATCH] extension: clearer wording in the daemon-missing notification "Daemon not installed" reads better than "daemon not found", and pointing to the project page matches the homepage URL EGO already exposes on the listing. --- strata@edu4rdshl.dev/extension.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strata@edu4rdshl.dev/extension.js b/strata@edu4rdshl.dev/extension.js index 2482d06..ce9e334 100644 --- a/strata@edu4rdshl.dev/extension.js +++ b/strata@edu4rdshl.dev/extension.js @@ -317,8 +317,8 @@ export default class StrataExtension extends Extension { Main.messageTray.add(source); const notification = new MessageTray.Notification({ source, - title: 'Strata: daemon not found', - body: 'Install the strata-daemon package to enable clipboard history.', + title: 'Strata: daemon not installed', + body: 'Install the strata-daemon package. See the project page for instructions.', urgency: MessageTray.Urgency.HIGH, }); source.addNotification(notification);