mirror of https://github.com/aristocratos/bpytop
Updated example config file and command line arguments
parent
7d35bd6a9a
commit
b4ac1835c1
27
README.md
27
README.md
|
@ -11,7 +11,7 @@
|
||||||

|

|
||||||

|

|
||||||
[](https://pypi.org/project/bpytop)
|
[](https://pypi.org/project/bpytop)
|
||||||
[](https://travis-ci.com/aristocratos/bpytop)
|
[](https://github.com/aristocratos/bpytop/actions?query=workflow%3Abuild)
|
||||||
[](https://paypal.me/aristocratos)
|
[](https://paypal.me/aristocratos)
|
||||||
[](https://github.com/sponsors/aristocratos)
|
[](https://github.com/sponsors/aristocratos)
|
||||||
[](https://ko-fi.com/aristocratos)
|
[](https://ko-fi.com/aristocratos)
|
||||||
|
@ -346,17 +346,17 @@ Config files stored in "$HOME/.config/bpytop" folder
|
||||||
"/etc/bpytop.conf" will be used as default seed for config file creation if it exists.
|
"/etc/bpytop.conf" will be used as default seed for config file creation if it exists.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
#? Config file for bpytop v. 1.0.53
|
#? Config file for bpytop v. 1.0.54
|
||||||
|
|
||||||
#* Color theme, looks for a .theme file in "/usr/[local/]share/bpytop/themes" and "~/.config/bpytop/themes", "Default" for builtin default theme.
|
#* Color theme, looks for a .theme file in "/usr/[local/]share/bpytop/themes" and "~/.config/bpytop/themes", "Default" for builtin default theme.
|
||||||
#* Prefix name by a plus sign (+) for a theme located in user themes folder, i.e. color_theme="+monokai"
|
#* Prefix name by a plus sign (+) for a theme located in user themes folder, i.e. color_theme="+monokai"
|
||||||
color_theme="Default"
|
color_theme="monokai"
|
||||||
|
|
||||||
#* If the theme set background should be shown, set to False if you want terminal background transparency
|
#* If the theme set background should be shown, set to False if you want terminal background transparency
|
||||||
theme_background=False
|
theme_background=True
|
||||||
|
|
||||||
#* Set bpytop view mode, "full" for everything shown, "proc" for cpu stats and processes, "stat" for cpu, mem, disks and net stats shown.
|
#* Manually set which boxes to show. Available values are "cpu mem net proc", seperate values with whitespace.
|
||||||
view_mode=full
|
shown_boxes="cpu mem net proc"
|
||||||
|
|
||||||
#* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs.
|
#* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs.
|
||||||
update_ms=2000
|
update_ms=2000
|
||||||
|
@ -455,15 +455,14 @@ log_level=DEBUG
|
||||||
#### Command line options:
|
#### Command line options:
|
||||||
|
|
||||||
``` text
|
``` text
|
||||||
USAGE: bpytop [argument]
|
usage: bpytop.py [-h] [-b BOXES] [-v] [--debug]
|
||||||
|
|
||||||
Arguments:
|
optional arguments:
|
||||||
-f, --full Start in full mode showing all boxes [default]
|
-h, --help show this help message and exit
|
||||||
-p, --proc Start in minimal mode without memory and net boxes
|
-b BOXES, --boxes BOXES
|
||||||
-s, --stat Start in minimal mode without process box
|
Which boxes to show at start, example: -b "cpu mem net proc"
|
||||||
-v, --version Show version info and exit
|
-v, --version Show version info and exit
|
||||||
-h, --help Show this help message and exit
|
--debug Start with loglevel set to DEBUG overriding value set in config
|
||||||
--debug Start with loglevel set to DEBUG overriding value set in config
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
Loading…
Reference in New Issue