Skip to content

Commit

Permalink
feat(OS): Added windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
devanlooches committed Nov 6, 2022
1 parent e6c36f8 commit 7f6c559
Showing 1 changed file with 28 additions and 22 deletions.
50 changes: 28 additions & 22 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,30 +411,36 @@ impl Config {

#[cfg(target_os = "macos")]
fn logo() -> Vec<String> {
let yellow = Style::from_dotted_str("yellow.bold");
let red = Style::from_dotted_str("red.bold");
let blue = Style::from_dotted_str("blue.bold");
let green = Style::from_dotted_str("green.bold");
let purple = Style::new().color256(5).bold();
let c1 = Style::new().color256(6).bold();
vec![
green.apply_to(" ,xNMM.").to_string(),
green.apply_to(" .OMMMMo").to_string(),
green.apply_to(" OMMM0,").to_string(),
yellow.apply_to(" .;loddo:' loolloddol;.").to_string(),
yellow.apply_to(" cKMMMMMMMMMMNWMMMMMMMMMM0:").to_string(),
yellow.apply_to(" .KMMMMMMMMMMMMMMMMMMMMMMMWd.").to_string(),
yellow.apply_to(" XMMMMMMMMMMMMMMMMMMMMMMMX.").to_string(),
yellow.apply_to(";MMMMMMMMMMMMMMMMMMMMMMMM:").to_string(),
red.apply_to(":MMMMMMMMMMMMMMMMMMMMMMMM:").to_string(),
red.apply_to(".MMMMMMMMMMMMMMMMMMMMMMMMX.").to_string(),
red.apply_to(" kMMMMMMMMMMMMMMMMMMMMMMMMWd.").to_string(),
red.apply_to(" .XMMMMMMMMMMMMMMMMMMMMMMMMMMk").to_string(),
purple
.apply_to(" .XMMMMMMMMMMMMMMMMMMMMMMMMK.")
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
c1.apply_to("################ ################")
.to_string(),
purple.apply_to(" kMMMMMMMMMMMMMMMMMMMMMMd").to_string(),
blue.apply_to(" ;KMMMMMMMWXXWMMMMMMMk.").to_string(),
blue.apply_to(" .cooc,. .,coo:.").to_string(),
]
}

Expand Down

0 comments on commit 7f6c559

Please sign in to comment.