Skip to content

Commit

Permalink
made -t mode more visually appealing, release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
charklie committed Mar 30, 2024
1 parent 685b698 commit a1f23a2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsftch"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
authors = ["Charklie [email protected]"]
license = "MIT"
Expand Down
14 changes: 7 additions & 7 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ fn info(formatting: bool, tree: bool) {
if tree {
println!("{}\n", distroascii);
println!(" {} ~ {}", "OS", os);
println!("󰍹 {} ~ {}", "hostname", hostname);
println!(" {} ~ {}", "kernel", kernel);
println!(" {} ~ {}", "memory", memory);
println!("╰ 󰥔 {} ~ {}\n", "uptime", uptime);
println!("├─󰍹 {} ~ {}", "hostname", hostname);
println!("├─ {} ~ {}", "kernel", kernel);
println!("├─ {} ~ {}", "memory", memory);
println!("╰󰥔 {} ~ {}\n", "uptime", uptime);
println!(" {} ~ {}", "user", user);
println!(" {} ~ {}", "terminal", terminal);
println!(" {} ~ {}", "shell", shell);
println!("╰  {} ~ {}", "de", desktop);
println!("├─ {} ~ {}", "terminal", terminal);
println!("├─ {} ~ {}", "shell", shell);
println!("╰ {} ~ {}", "de", desktop);
} else if !tree {
println!("{}\n", distroascii);
println!(" {} ~ {}@{}", "user", user, hostname);
Expand Down

0 comments on commit a1f23a2

Please sign in to comment.