Seperated prompt and prompt-pwd into 2 binaries

This commit is contained in:
Candifloss 2025-01-19 15:57:08 +05:30
parent d4d783580d
commit 58ecbd6a75
6 changed files with 42 additions and 22 deletions

2
Cargo.lock generated
View File

@ -13,7 +13,7 @@ dependencies = [
[[package]] [[package]]
name = "prettyprompt" name = "prettyprompt"
version = "0.2.0" version = "0.3.0"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
] ]

View File

@ -1,7 +1,15 @@
[package] [package]
name = "prettyprompt" name = "prettyprompt"
version = "0.2.0" version = "0.3.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
ansi_term = "0.12" ansi_term = "0.12"
[[bin]]
name = "prettyprompt"
path = "src/prettyprompt.rs"
[[bin]]
name = "prettyprompt-pwd"
path = "src/prettyprompt_pwd.rs"

View File

@ -59,7 +59,7 @@ cargo build --release
**Step 2. Add to `$PATH`** **Step 2. Add to `$PATH`**
- Option 1. Move the binary to a directory in your `$PATH`. Eg: - Option 1. Move the binary to a directory in your `$PATH`. Eg:
```bash ```bash
sudo mv target/release/prettyprompt /usr/bin/ sudo mv target/release/prettyprompt target/release/prettyprompt-pwd /usr/bin/
``` ```
- Option 2. Add the directory containing the binary to `$PATH` - Option 2. Add the directory containing the binary to `$PATH`
System-wide: `/etc/profile` System-wide: `/etc/profile`

View File

@ -7,7 +7,7 @@ pub const GIT_SYMBOL: &str = "\u{276F}"; // Git indicator symbol: ""
pub const MAIN_COL: ansi_term::Colour = RGB(178, 98, 44); pub const MAIN_COL: ansi_term::Colour = RGB(178, 98, 44);
pub const DEV_COL: ansi_term::Colour = RGB(54, 159, 150); pub const DEV_COL: ansi_term::Colour = RGB(54, 159, 150);
pub const DEFAULT_BRANCH_COL: ansi_term::Colour = RGB(255, 255, 255); pub const DEFAULT_BRANCH_COL: ansi_term::Colour = RGB(255, 255, 255);
pub const NORMIE_COL: ansi_term::Colour = RGB(82, 82, 82); pub const NORMIE_COL: ansi_term::Colour = RGB(82, 82, 82);
/// Returns the repo's root and branch, if present /// Returns the repo's root and branch, if present
pub fn info() -> Option<(String, String)> { pub fn info() -> Option<(String, String)> {
@ -20,10 +20,10 @@ pub fn info() -> Option<(String, String)> {
let output_str = String::from_utf8_lossy(&output.stdout).trim().to_string(); let output_str = String::from_utf8_lossy(&output.stdout).trim().to_string();
let parts: Vec<&str> = output_str.split('\n').collect(); let parts: Vec<&str> = output_str.split('\n').collect();
if parts.len() == 2 { if parts.len() == 2 {
return Some((parts[0].to_string(), parts[1].to_string())); // If the `git`` command returns a repo and branch return Some((parts[0].to_string(), parts[1].to_string())); // If the `git`` command returns a repo and branch
} }
} }
None // If the current directory is not in a git repo None // If the current directory is not in a git repo
} }
/// The name of the repo /// The name of the repo

View File

@ -1,12 +1,11 @@
mod indicators { mod indicators {
pub mod error; pub mod error;
pub mod git; pub mod git;
pub mod pwd;
pub mod ssh; pub mod ssh;
pub mod user; pub mod user;
} }
use crate::indicators::{error, git, pwd, ssh, user}; use crate::indicators::{error, git, ssh, user};
use ansi_term::{ANSIGenericString, ANSIGenericStrings}; use ansi_term::{ANSIGenericString, ANSIGenericStrings};
// Add a component to the prompt if the condition is true. // Add a component to the prompt if the condition is true.
@ -31,13 +30,9 @@ fn main() {
let indicate_ssh: bool = true; let indicate_ssh: bool = true;
let indicate_err: bool = true; let indicate_err: bool = true;
let indicate_git_branch: bool = true; let indicate_git_branch: bool = true;
let show_pwd: bool = true;
let abbrev_home: bool = true;
let shorten_path: bool = true;
let replace_repo: bool = true;
// Conditionally fetch Git-related info if required, or set to None // Conditionally fetch Git-related info if required, or set to None
let git_info: Option<(String, String)> = if indicate_git_branch || replace_repo { let git_info: Option<(String, String)> = if indicate_git_branch {
git::info() git::info()
} else { } else {
None None
@ -53,15 +48,6 @@ fn main() {
error::indicator(&cmd_args) error::indicator(&cmd_args)
}); });
// Insert `pwd` at the beginning of the prompt
if show_pwd {
let repo_path = git_info.map(|info| info.0);
components.insert(
0,
pwd::pwd(abbrev_home, shorten_path, replace_repo, repo_path),
);
}
// Finally, combine the parts into a single prompts string // Finally, combine the parts into a single prompts string
let prompt: ANSIGenericStrings<'_, str> = ANSIGenericStrings(&components[..]); let prompt: ANSIGenericStrings<'_, str> = ANSIGenericStrings(&components[..]);
// `print!()` prevents an extra newline, unlike `println!()` // `print!()` prevents an extra newline, unlike `println!()`

26
src/prettyprompt_pwd.rs Normal file
View File

@ -0,0 +1,26 @@
mod indicators {
pub mod git;
pub mod pwd;
}
use crate::indicators::{git, pwd};
fn main() {
// Hard-coded configuration. This will be replaced by a configuration file in a future version
let indicate_git_branch: bool = true;
let abbrev_home: bool = true;
let shorten_path: bool = true;
let replace_repo: bool = true;
// Conditionally fetch Git-related info if required, or set to None
let git_info: Option<(String, String)> = if indicate_git_branch || replace_repo {
git::info()
} else {
None
};
let repo_path = git_info.map(|info| info.0);
let promt_pwd = pwd::pwd(abbrev_home, shorten_path, replace_repo, repo_path);
print!("{promt_pwd}"); // A trailing space for aesthetic formatting.
}