diff options
| author | Fuwn <[email protected]> | 2021-05-16 15:49:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-16 15:49:03 -0700 |
| commit | 3cd2aa5b4b4592e136d0c25231d93b47f810eac6 (patch) | |
| tree | 013c9695fd10dbc087dd2f32db5623d962d3311b | |
| parent | feat(builtins): add a neofetch like utility (diff) | |
| download | whirl-3cd2aa5b4b4592e136d0c25231d93b47f810eac6.tar.xz whirl-3cd2aa5b4b4592e136d0c25231d93b47f810eac6.zip | |
refactor(subs): remove two second delay before prompt initiailization
| -rw-r--r-- | src/subs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subs.rs b/src/subs.rs index 1066c3f..18107bc 100644 --- a/src/subs.rs +++ b/src/subs.rs @@ -44,7 +44,7 @@ pub async fn run() { std::thread::sleep(std::time::Duration::default()); } } else { - std::thread::sleep(std::time::Duration::from_secs(2)); + // std::thread::sleep(std::time::Duration::from_secs(2)); Prompt::handle().await; } |