diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index a6a23e6ba489fe17ee91bfef4970744db1683056..ef9e4b591a6308fb3e60aba303aeaa73dc9494d5 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -293,8 +293,8 @@ pub fn initialize_workspace(app_state: Arc, cx: &mut AppContext) { if cfg!(target_os = "linux") { let prompt = cx.prompt( PromptLevel::Warning, - "Could not install the CLI", - Some("If you installed Zed from our official release add ~/.local/bin to your PATH.\n\nIf you installed Zed from a different source you may need to create an alias/symlink manually."), + "CLI should already be installed", + Some("If you installed Zed from our official release add ~/.local/bin to your PATH.\n\nIf you installed Zed from a different source like your package manager, then you may need to create an alias/symlink manually.\n\nDepending on your package manager, the CLI might be named zeditor, zedit, zed-editor or something else."), &["Ok"], ); cx.background_executor().spawn(prompt).detach();