Giant blob of minor changes
[dotfiles/.git] / .config / bpytop / bpytop.conf
1 #? Config file for bpytop v. 1.0.50
2
3 #* Color theme, looks for a .theme file in "/usr/[local/]share/bpytop/themes" and "~/.config/bpytop/themes", "Default" for builtin default theme.
4 #* Prefix name by a plus sign (+) for a theme located in user themes folder, i.e. color_theme="+monokai"
5 color_theme="Default"
6
7 #* If the theme set background should be shown, set to False if you want terminal background transparency
8 theme_background=True
9
10 #* Set bpytop view mode, "full" for everything shown, "proc" for cpu stats and processes, "stat" for cpu, mem, disks and net stats shown.
11 view_mode=full
12
13 #* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs.
14 update_ms=2000
15
16 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive",
17 #* "cpu lazy" updates top process over time, "cpu responsive" updates top process directly.
18 proc_sorting="cpu lazy"
19
20 #* Reverse sorting order, True or False.
21 proc_reversed=False
22
23 #* Show processes as a tree
24 proc_tree=False
25
26 #* Which depth the tree view should auto collapse processes at
27 tree_depth=3
28
29 #* Use the cpu graph colors in the process list.
30 proc_colors=True
31
32 #* Use a darkening gradient in the process list.
33 proc_gradient=True
34
35 #* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
36 proc_per_core=False
37
38 #* Show process memory as bytes instead of percent
39 proc_mem_bytes=True
40
41 #* Check cpu temperature, needs "osx-cpu-temp" on MacOS X.
42 check_temp=True
43
44 #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
45 cpu_sensor=Auto
46
47 #* Show temperatures for cpu cores also if check_temp is True and sensors has been found
48 show_coretemp=True
49
50 #* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
51 draw_clock="%X"
52
53 #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
54 background_update=True
55
56 #* Custom cpu model name, empty string to disable.
57 custom_cpu_name=""
58
59 #* Optional filter for shown disks, should be last folder in path of a mountpoint, "root" replaces "/", separate multiple values with comma.
60 #* Begin line with "exclude=" to change to exclude filter, oterwise defaults to "most include" filter. Example: disks_filter="exclude=boot, home"
61 disks_filter=""
62
63 #* Show graphs instead of meters for memory values.
64 mem_graphs=True
65
66 #* If swap memory should be shown in memory box.
67 show_swap=True
68
69 #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
70 swap_disk=True
71
72 #* If mem box should be split to also show disks info.
73 show_disks=True
74
75 #* Set fixed values for network graphs, default "10M" = 10 Mibibytes, possible units "K", "M", "G", append with "bit" for bits instead of bytes, i.e "100mbit"
76 net_download="10M"
77 net_upload="10M"
78
79 #* Start in network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
80 net_auto=True
81
82 #* Sync the scaling for download and upload to whichever currently has the highest scale
83 net_sync=False
84
85 #* If the network graphs color gradient should scale to bandwith usage or auto scale, bandwith usage is based on "net_download" and "net_upload" values
86 net_color_fixed=False
87
88 #* Show battery stats in top right if battery is present
89 show_battery=True
90
91 #* Show init screen at startup, the init screen is purely cosmetical
92 show_init=True
93
94 #* Enable check for new version from github.com/aristocratos/bpytop at start.
95 update_check=True
96
97 #* Set loglevel for "~/.config/bpytop/error.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
98 #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
99 log_level=WARNING