Skip to content

Commit

Permalink
fix: hey use username not real name :D (#509)
Browse files Browse the repository at this point in the history
Signed-off-by: Luterán Lajos <[email protected]>
  • Loading branch information
luteran42 authored Mar 14, 2024
1 parent 59b6ae5 commit 80c9672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ lazy_static! {

static ref HOME_DIR: Option<PathBuf> = dirs_next::home_dir();

static ref USERNAME: String = whoami::fallible::realname().unwrap_or("No Username".to_string());
static ref USERNAME: String = whoami::fallible::username().unwrap_or("No Username".to_string());
static ref HOSTNAME: String = whoami::fallible::hostname().unwrap_or("No Hostname".to_string());

static ref TIMEZONE_STR: String = {
Expand Down

0 comments on commit 80c9672

Please sign in to comment.