diff --git a/1.4.md b/1.4.md index 19ae5bb5..813905f3 100644 --- a/1.4.md +++ b/1.4.md @@ -11,9 +11,15 @@ - Added the ability to print certain info as a progress bar. - Added `--progress_char` and `$progress_char` to set the character the progress bars
will be drawn with. +- Added `--progress_length` to change the length of the progress bars. - Added `--progress_colors` to color the progress bars. - Added `$progress_color_elapsed` and `$progress_color_total` config options. +**CPU Usage**
+- Added `cpu_usage` function which prints your current cpu usage. +- Added `--cpu_usage_bar` and `$cpu_usage_bar` to enable/disable displaying a progress
+bar in the output. + **Battery**
- Added support for NetBSD diff --git a/README.md b/README.md index 2308ac34..004068ec 100644 --- a/README.md +++ b/README.md @@ -282,8 +282,10 @@ alias fetch2="fetch \ Progress Bars: --progress_char char Character to use when drawing progress bars. + --progress_length num Length in spaces to make the progress bars. --progress_colors num num Colors to make the progress bar. Set in this order: elapsed, total + --cpu_usage_bar on/off Whether or not to print a progress bar for cpu usage. Image: diff --git a/neofetch b/neofetch index c36d6d23..a9255e22 100755 --- a/neofetch +++ b/neofetch @@ -2341,8 +2341,10 @@ usage () { cat << EOF Progress Bars: --progress_char char Character to use when drawing progress bars. + --progress_length num Length in spaces to make the progress bars. --progress_colors num num Colors to make the progress bar. Set in this order: elapsed, total + --cpu_usage_bar on/off Whether or not to print a progress bar for cpu usage. Image: