summaryrefslogtreecommitdiffstats
path: root/src/info.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-01-03 05:33:21 -0500
committerJesse Luehrs <doy@tozt.net>2022-01-03 05:59:31 -0500
commit4142936f657004f88e259583136f25f566b0b1c0 (patch)
treea742607891e39a03587e0b22be73e3bb8dd49b32 /src/info.rs
parenta3af022f75af415709481cd6dcd73f4d33b472e4 (diff)
downloadnbsh-4142936f657004f88e259583136f25f566b0b1c0.tar.gz
nbsh-4142936f657004f88e259583136f25f566b0b1c0.zip
split up code into more files
Diffstat (limited to 'src/info.rs')
-rw-r--r--src/info.rs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/info.rs b/src/info.rs
new file mode 100644
index 0000000..3ff2576
--- /dev/null
+++ b/src/info.rs
@@ -0,0 +1,40 @@
+pub fn pwd() -> anyhow::Result<String> {
+ let mut pwd = std::env::current_dir()?.display().to_string();
+ if let Ok(home) = std::env::var("HOME") {
+ if pwd.starts_with(&home) {
+ pwd.replace_range(..home.len(), "~");
+ }
+ }
+ Ok(pwd)
+}
+
+pub fn user() -> anyhow::Result<String> {
+ Ok(users::get_current_username()
+ .ok_or_else(|| anyhow::anyhow!("couldn't get username"))?
+ .to_string_lossy()
+ .into_owned())
+}
+
+#[allow(clippy::unnecessary_wraps)]
+pub fn prompt_char() -> anyhow::Result<String> {
+ if users::get_current_uid() == 0 {
+ Ok("#".into())
+ } else {
+ Ok("$".into())
+ }
+}
+
+pub fn hostname() -> anyhow::Result<String> {
+ let mut hostname = hostname::get()?.to_string_lossy().into_owned();
+ if let Some(idx) = hostname.find('.') {
+ hostname.truncate(idx);
+ }
+ Ok(hostname)
+}
+
+#[allow(clippy::unnecessary_wraps)]
+pub fn time(offset: time::UtcOffset) -> anyhow::Result<String> {
+ Ok(crate::format::time(
+ time::OffsetDateTime::now_utc().to_offset(offset),
+ ))
+}