Skip to content

Commit 663b0e7

Browse files
committed
Improve name
Signed-off-by: Ikey Doherty <[email protected]>
1 parent 148e144 commit 663b0e7

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

Cargo.lock

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "sawdisk"
2+
name = "disksaw"
33
version = "0.1.0"
44
edition = "2021"
55

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# sawdisk
1+
# disksaw
22

33
WARNING: This is still a toy! It is not ready for production use, and might never become ready!
44

@@ -9,4 +9,4 @@ to support other use cases in Serpent OS, such as our installer, [lichen](https:
99

1010
## License
1111

12-
`disks-rs` is available under the terms of the [MPL-2.0](https://spdx.org/licenses/MPL-2.0.html)
12+
`disksaw` is available under the terms of the [MPL-2.0](https://spdx.org/licenses/MPL-2.0.html)

src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
use std::env;
66

7+
use disksaw::{backend_service, ui};
78
use pretty_env_logger::formatted_builder;
8-
use sawdisk::{backend_service, ui};
99

1010
fn main() -> color_eyre::Result<()> {
1111
// Check if --backend-service is in args
1212
let is_backend = env::args().any(|arg| arg == "--backend-service");
1313

1414
// Initialize color_eyre for better error messages + error reports
1515
color_eyre::config::HookBuilder::default()
16-
.issue_url("https://github.com/ikeycode/sawdisk/issues/new")
16+
.issue_url("https://github.com/ikeycode/disksaw/issues/new")
1717
.add_issue_metadata("version", env!("CARGO_PKG_VERSION"))
1818
.add_issue_metadata("backend", is_backend.to_string())
1919
.display_env_section(true)

src/ui/emojis.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
use console::Emoji;
66

7-
pub static SAW: Emoji<'_, '_> = Emoji("🪚 ", "");
8-
pub static DISK: Emoji<'_, '_> = Emoji("💾 ", "");
7+
pub static SAW: Emoji<'_, '_> = Emoji("🪚", "");
8+
pub static DISK: Emoji<'_, '_> = Emoji("💽", "");
99
pub static LIGHTNING: Emoji<'_, '_> = Emoji("⚡️ ", "");
1010
pub static SPARKLES: Emoji<'_, '_> = Emoji("✨ ", "");
1111
pub static CHART: Emoji<'_, '_> = Emoji("📊 ", "");

src/ui/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ static ASCII_LOGO: &str = include_str!("ascii.txt");
1919
fn print_intro() -> color_eyre::Result<()> {
2020
cliclack::clear_screen()?;
2121
cliclack::intro(format!(
22-
"{name_saw}{name_disk} - {version} {SAW}{DISK}",
22+
"{name_disk}{name_saw} {DISK}{SAW} - {version}",
23+
name_disk = style("disk").cyan().bold(),
2324
name_saw = style("saw").yellow().bold(),
24-
name_disk = style("disk").bold(),
2525
version = style(env!("CARGO_PKG_VERSION")).dim(),
2626
))?;
2727
cliclack::log::remark(format!(

0 commit comments

Comments
 (0)