Changelog
This commit is contained in:
parent
da5d912774
commit
639641a159
6
1.4.md
6
1.4.md
|
@ -11,9 +11,15 @@
|
||||||
- Added the ability to print certain info as a progress bar.
|
- Added the ability to print certain info as a progress bar.
|
||||||
- Added `--progress_char` and `$progress_char` to set the character the progress bars<br \>
|
- Added `--progress_char` and `$progress_char` to set the character the progress bars<br \>
|
||||||
will be drawn with.
|
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_colors` to color the progress bars.
|
||||||
- Added `$progress_color_elapsed` and `$progress_color_total` config options.
|
- Added `$progress_color_elapsed` and `$progress_color_total` config options.
|
||||||
|
|
||||||
|
**CPU Usage**<br \>
|
||||||
|
- Added `cpu_usage` function which prints your current cpu usage.
|
||||||
|
- Added `--cpu_usage_bar` and `$cpu_usage_bar` to enable/disable displaying a progress<br \>
|
||||||
|
bar in the output.
|
||||||
|
|
||||||
**Battery**<br \>
|
**Battery**<br \>
|
||||||
- Added support for NetBSD
|
- Added support for NetBSD
|
||||||
|
|
||||||
|
|
|
@ -282,8 +282,10 @@ alias fetch2="fetch \
|
||||||
|
|
||||||
Progress Bars:
|
Progress Bars:
|
||||||
--progress_char char Character to use when drawing 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:
|
--progress_colors num num Colors to make the progress bar. Set in this order:
|
||||||
elapsed, total
|
elapsed, total
|
||||||
|
--cpu_usage_bar on/off Whether or not to print a progress bar for cpu usage.
|
||||||
|
|
||||||
|
|
||||||
Image:
|
Image:
|
||||||
|
|
2
neofetch
2
neofetch
|
@ -2341,8 +2341,10 @@ usage () { cat << EOF
|
||||||
|
|
||||||
Progress Bars:
|
Progress Bars:
|
||||||
--progress_char char Character to use when drawing 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:
|
--progress_colors num num Colors to make the progress bar. Set in this order:
|
||||||
elapsed, total
|
elapsed, total
|
||||||
|
--cpu_usage_bar on/off Whether or not to print a progress bar for cpu usage.
|
||||||
|
|
||||||
|
|
||||||
Image:
|
Image:
|
||||||
|
|
Reference in New Issue