2019-04-02 05:23:03 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate clap;
|
2019-04-09 05:35:14 +02:00
|
|
|
|
2019-06-10 16:56:17 +02:00
|
|
|
mod config;
|
2019-04-19 22:57:14 +02:00
|
|
|
mod context;
|
2019-07-03 14:03:02 +02:00
|
|
|
mod init;
|
2019-05-01 22:34:24 +02:00
|
|
|
mod module;
|
2019-04-04 02:14:26 +02:00
|
|
|
mod modules;
|
|
|
|
mod print;
|
2019-04-12 23:49:20 +02:00
|
|
|
mod segment;
|
2019-06-10 16:56:17 +02:00
|
|
|
mod utils;
|
2019-04-04 02:14:26 +02:00
|
|
|
|
2019-07-03 14:03:02 +02:00
|
|
|
use clap::{App, AppSettings, Arg, SubCommand};
|
2019-04-02 06:45:49 +02:00
|
|
|
|
2019-04-02 05:23:03 +02:00
|
|
|
fn main() {
|
2019-05-14 06:43:11 +02:00
|
|
|
pretty_env_logger::init();
|
|
|
|
|
2019-07-02 22:12:53 +02:00
|
|
|
let status_code_arg = Arg::with_name("status_code")
|
|
|
|
.short("s")
|
|
|
|
.long("status")
|
|
|
|
.value_name("STATUS_CODE")
|
|
|
|
.help("The status code of the previously run command")
|
|
|
|
.takes_value(true);
|
|
|
|
|
|
|
|
let path_arg = Arg::with_name("path")
|
|
|
|
.short("p")
|
|
|
|
.long("path")
|
|
|
|
.value_name("PATH")
|
|
|
|
.help("The path that the prompt should render for")
|
|
|
|
.takes_value(true);
|
|
|
|
|
2019-07-03 14:03:02 +02:00
|
|
|
let shell_arg = Arg::with_name("shell")
|
|
|
|
.value_name("SHELL")
|
|
|
|
.help(
|
|
|
|
"The name of the currently running shell\nCurrently supported options: bash, zsh, fish",
|
|
|
|
)
|
|
|
|
.required(true);
|
|
|
|
|
2019-08-08 19:25:30 +02:00
|
|
|
let cmd_duration_arg = Arg::with_name("cmd_duration")
|
|
|
|
.short("d")
|
|
|
|
.long("cmd-duration")
|
|
|
|
.value_name("CMD_DURATION")
|
|
|
|
.help("The execution duration of the last command, in seconds")
|
|
|
|
.takes_value(true);
|
|
|
|
|
2019-07-03 14:03:02 +02:00
|
|
|
let matches = App::new("starship")
|
|
|
|
.about("The cross-shell prompt for astronauts. ☄🌌️")
|
2019-04-02 05:30:53 +02:00
|
|
|
// pull the version number from Cargo.toml
|
|
|
|
.version(crate_version!())
|
|
|
|
// pull the authors from Cargo.toml
|
|
|
|
.author(crate_authors!())
|
2019-07-03 14:03:02 +02:00
|
|
|
.after_help("https://github.com/starship/starship")
|
|
|
|
.setting(AppSettings::SubcommandRequiredElseHelp)
|
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("init")
|
|
|
|
.about("Prints the shell function used to execute starship")
|
|
|
|
.arg(&shell_arg),
|
|
|
|
)
|
2019-06-06 14:18:00 +02:00
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("prompt")
|
|
|
|
.about("Prints the full starship prompt")
|
2019-07-02 22:12:53 +02:00
|
|
|
.arg(&status_code_arg)
|
2019-08-08 19:25:30 +02:00
|
|
|
.arg(&path_arg)
|
|
|
|
.arg(&cmd_duration_arg),
|
2019-06-06 14:18:00 +02:00
|
|
|
)
|
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("module")
|
|
|
|
.about("Prints a specific prompt module")
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("name")
|
|
|
|
.help("The name of the module to be printed")
|
|
|
|
.required(true),
|
|
|
|
)
|
2019-07-02 22:12:53 +02:00
|
|
|
.arg(&status_code_arg)
|
2019-08-08 19:25:30 +02:00
|
|
|
.arg(&path_arg)
|
|
|
|
.arg(&cmd_duration_arg),
|
2019-04-04 04:57:50 +02:00
|
|
|
)
|
2019-04-02 05:30:53 +02:00
|
|
|
.get_matches();
|
2019-04-02 06:45:49 +02:00
|
|
|
|
2019-06-06 14:18:00 +02:00
|
|
|
match matches.subcommand() {
|
2019-07-03 14:03:02 +02:00
|
|
|
("init", Some(sub_m)) => {
|
|
|
|
let shell_name = sub_m.value_of("shell").expect("Shell name missing.");
|
|
|
|
init::init(shell_name)
|
|
|
|
}
|
2019-06-06 14:18:00 +02:00
|
|
|
("prompt", Some(sub_m)) => print::prompt(sub_m.clone()),
|
|
|
|
("module", Some(sub_m)) => {
|
|
|
|
let module_name = sub_m.value_of("name").expect("Module name missing.");
|
|
|
|
print::module(module_name, sub_m.clone());
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
2019-04-02 05:23:03 +02:00
|
|
|
}
|