diff options
-rw-r--r-- | dist/etc/dwvshrc | 2 | ||||
-rw-r--r-- | src/main.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dist/etc/dwvshrc b/dist/etc/dwvshrc index 7f7314e..f731083 100644 --- a/dist/etc/dwvshrc +++ b/dist/etc/dwvshrc @@ -4,4 +4,4 @@ export PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin # Default prompt -export PS1="|> " +export PS1=" ¥ " diff --git a/src/main.rs b/src/main.rs index d58e9e0..db5e22d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,7 @@ fn repl( // Get the prompt let prompt = match env::var("PS1") { Ok(val) => val, - Err(_) => String::from("|> "), + Err(_) => String::from(" ¥ "), }; // Update shell title @@ -217,7 +217,7 @@ fn main() { } else { let prompt = match env::var("PS1") { Ok(val) => val, - Err(_) => String::from("|> "), + Err(_) => String::from(" ¥ "), }; print!("\n{}", prompt); io::stdout().flush().unwrap(); |