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.
This commit is contained in:
Eduard Tolosa 2026-06-25 16:20:29 -05:00
parent 8943136384
commit 28b68b4dc4

View file

@ -317,8 +317,8 @@ export default class StrataExtension extends Extension {
Main.messageTray.add(source); Main.messageTray.add(source);
const notification = new MessageTray.Notification({ const notification = new MessageTray.Notification({
source, source,
title: 'Strata: daemon not found', title: 'Strata: daemon not installed',
body: 'Install the strata-daemon package to enable clipboard history.', body: 'Install the strata-daemon package. See the project page for instructions.',
urgency: MessageTray.Urgency.HIGH, urgency: MessageTray.Urgency.HIGH,
}); });
source.addNotification(notification); source.addNotification(notification);