mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
3daf3ddf26
Implement a timer module that takes a commandline argument, the number of seconds the last job took to complete, and displays it if appropriate. Alters shell initialization files to compute this number using date +%s where needed. Adds a config section to configure minimum amount of time before timer is shown (default is 2s)
11 lines
145 B
Rust
11 lines
145 B
Rust
mod character;
|
|
mod cmd_duration;
|
|
mod common;
|
|
mod configuration;
|
|
mod directory;
|
|
mod golang;
|
|
mod line_break;
|
|
mod nodejs;
|
|
mod python;
|
|
mod username;
|