Skip to content

Commit 49b2244

Browse files
committed
Remove the extra, yellow startup message
1 parent 07a59fc commit 49b2244

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crates/sshx/src/main.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ansi_term::Color::{Cyan, Fixed, Green, Yellow};
1+
use ansi_term::Color::{Cyan, Fixed, Green};
22
use anyhow::Result;
33
use clap::Parser;
44
use sshx::{controller::Controller, runner::Runner, terminal::get_default_shell};
@@ -29,15 +29,12 @@ fn print_greeting(shell: &str, controller: &Controller) {
2929
3030
{arr} Link: {link_v}
3131
{arr} Shell: {shell_v}
32-
33-
{online_msg}
3432
"#,
3533
sshx = Green.bold().paint("sshx"),
3634
version = Green.paint(&version_str),
3735
arr = Green.paint("➜"),
3836
link_v = Cyan.underline().paint(controller.url()),
3937
shell_v = Fixed(8).paint(shell),
40-
online_msg = Yellow.paint("Your terminal session is online!"),
4138
);
4239
}
4340

0 commit comments

Comments
 (0)