We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07a59fc commit 49b2244Copy full SHA for 49b2244
crates/sshx/src/main.rs
@@ -1,4 +1,4 @@
1
-use ansi_term::Color::{Cyan, Fixed, Green, Yellow};
+use ansi_term::Color::{Cyan, Fixed, Green};
2
use anyhow::Result;
3
use clap::Parser;
4
use sshx::{controller::Controller, runner::Runner, terminal::get_default_shell};
@@ -29,15 +29,12 @@ fn print_greeting(shell: &str, controller: &Controller) {
29
30
{arr} Link: {link_v}
31
{arr} Shell: {shell_v}
32
-
33
- {online_msg}
34
"#,
35
sshx = Green.bold().paint("sshx"),
36
version = Green.paint(&version_str),
37
arr = Green.paint("➜"),
38
link_v = Cyan.underline().paint(controller.url()),
39
shell_v = Fixed(8).paint(shell),
40
- online_msg = Yellow.paint("Your terminal session is online!"),
41
);
42
}
43
0 commit comments