From 86d810ea8e81c7512b7799b2274b2b70a7d2f8d4 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 14 Sep 2021 12:36:12 -0400 Subject: [PATCH] Change notification message Signed-off-by: Sebastian Malton --- src/renderer/components/dock/terminal.store.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/renderer/components/dock/terminal.store.ts b/src/renderer/components/dock/terminal.store.ts index b99303e7ef..d37dc8cc00 100644 --- a/src/renderer/components/dock/terminal.store.ts +++ b/src/renderer/components/dock/terminal.store.ts @@ -120,9 +120,12 @@ export class TerminalStore extends Singleton { const rcIsFinished = when(() => this.connections.get(tab.id).shellRunCommandsFinished); const notifyVeryLong = setTimeout(() => { rcIsFinished.cancel(); - Notifications.info("Terminal shell is taking a long time to complete startup. Bypassing shell completion check.", { - timeout: 4_000, - }); + Notifications.info( + "If terminal shell is not ready please check your shell init files, if applicable. You may see this message if you have set a custom shell prompt.", + { + timeout: 4_000, + }, + ); }, 10_000); await rcIsFinished.catch(noop);