Remove stray cpu usage stuff and update docs
This commit is contained in:
parent
52e887feda
commit
cc6319bc1c
13
README.md
13
README.md
|
@ -285,10 +285,15 @@ alias fetch2="fetch \
|
||||||
--progress_length num Length in spaces to make the 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.
|
--cpu_display mode1 mode2 Which shorthand to use and how CPU usage should be printed
|
||||||
--memory_bar on/off Whether or not to print a progress bar for memory usage.
|
mode1 takes: name, speed, tiny, on, off
|
||||||
--battery_bar on/off Whether or not to print a progress bar for battery usage.
|
mode2 takes: info, bar, infobar, barinfo
|
||||||
--disk_bar on/off Whether or not to print a progress bar for disk usage.
|
--memory_display mode Which way should the memory progress bar be added
|
||||||
|
Takes bar, infobar, barinfo
|
||||||
|
--battery_display mode Which way should the battery progress bar be added
|
||||||
|
Takes bar, infobar, barinfo
|
||||||
|
--disk_display mode Which way should the disk progress bar be added
|
||||||
|
Takes bar, infobar, barinfo
|
||||||
|
|
||||||
|
|
||||||
Image:
|
Image:
|
||||||
|
|
4
neofetch
4
neofetch
|
@ -63,8 +63,6 @@ printinfo () {
|
||||||
# info "Users" users
|
# info "Users" users
|
||||||
# info "Birthday" birthday
|
# info "Birthday" birthday
|
||||||
|
|
||||||
# info "CPU Usage" cpu_usage
|
|
||||||
|
|
||||||
info linebreak
|
info linebreak
|
||||||
info cols
|
info cols
|
||||||
info linebreak
|
info linebreak
|
||||||
|
@ -268,11 +266,9 @@ progress_color_total="8"
|
||||||
# barinfo: The bar is displayed before the info.
|
# barinfo: The bar is displayed before the info.
|
||||||
# off: Only the info is displayed.
|
# off: Only the info is displayed.
|
||||||
#
|
#
|
||||||
# --cpu_displau bar/infobar/barinfo/off
|
|
||||||
# --memory_display bar/infobar/barinfo/off
|
# --memory_display bar/infobar/barinfo/off
|
||||||
# --battery_display bar/infobar/barinfo/off
|
# --battery_display bar/infobar/barinfo/off
|
||||||
# --disk_display bar/infobar/barinfo/off
|
# --disk_display bar/infobar/barinfo/off
|
||||||
cpu_display="off"
|
|
||||||
memory_display="off"
|
memory_display="off"
|
||||||
battery_display="off"
|
battery_display="off"
|
||||||
disk_display="off"
|
disk_display="off"
|
||||||
|
|
Reference in New Issue