massive update, probably broken
[dotfiles/.git] / .config / bpytop / bpytop.conf
1 #? Config file for bpytop v. 1.0.68
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="gruvbox_dark"
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 #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
11 truecolor=True
12
13 #* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace.
14 shown_boxes="cpu mem net proc"
15
16 #* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs.
17 update_ms=2000
18
19 #* Processes update multiplier, sets how often the process list is updated as a multiplier of "update_ms".
20 #* Set to 2 or higher to greatly decrease bpytop cpu usage. (Only integers)
21 proc_update_mult=2
22
23 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive",
24 #* "cpu lazy" updates top process over time, "cpu responsive" updates top process directly.
25 proc_sorting="cpu lazy"
26
27 #* Reverse sorting order, True or False.
28 proc_reversed=False
29
30 #* Show processes as a tree
31 proc_tree=False
32
33 #* Which depth the tree view should auto collapse processes at
34 tree_depth=3
35
36 #* Use the cpu graph colors in the process list.
37 proc_colors=True
38
39 #* Use a darkening gradient in the process list.
40 proc_gradient=True
41
42 #* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
43 proc_per_core=False
44
45 #* Show process memory as bytes instead of percent
46 proc_mem_bytes=True
47
48 #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available, see:
49 #* https://psutil.readthedocs.io/en/latest/#psutil.cpu_times for attributes available on specific platforms.
50 #* Select from a list of detected attributes from the options menu
51 cpu_graph_upper="total"
52
53 #* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available, see:
54 #* https://psutil.readthedocs.io/en/latest/#psutil.cpu_times for attributes available on specific platforms.
55 #* Select from a list of detected attributes from the options menu
56 cpu_graph_lower="total"
57
58 #* Toggles if the lower CPU graph should be inverted.
59 cpu_invert_lower=True
60
61 #* Set to True to completely disable the lower CPU graph.
62 cpu_single_graph=False
63
64 #* Shows the system uptime in the CPU box.
65 show_uptime=True
66
67 #* Check cpu temperature, needs "osx-cpu-temp" on MacOS X.
68 check_temp=True
69
70 #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
71 cpu_sensor=Auto
72
73 #* Show temperatures for cpu cores also if check_temp is True and sensors has been found
74 show_coretemp=True
75
76 #* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine"
77 temp_scale="celsius"
78
79 #* Show CPU frequency, can cause slowdowns on certain systems with some versions of psutil
80 show_cpu_freq=True
81
82 #* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
83 draw_clock="%X"
84
85 #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
86 background_update=True
87
88 #* Custom cpu model name, empty string to disable.
89 custom_cpu_name=""
90
91 #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with a comma ",".
92 #* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot, /home/user"
93 disks_filter=""
94
95 #* Show graphs instead of meters for memory values.
96 mem_graphs=True
97
98 #* If swap memory should be shown in memory box.
99 show_swap=True
100
101 #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
102 swap_disk=True
103
104 #* If mem box should be split to also show disks info.
105 show_disks=True
106
107 #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
108 only_physical=True
109
110 #* Read disks list from /etc/fstab. This also disables only_physical.
111 use_fstab=False
112
113 #* Toggles if io stats should be shown in regular disk usage view
114 show_io_stat=True
115
116 #* Toggles io mode for disks, showing only big graphs for disk read/write speeds.
117 io_mode=False
118
119 #* Set to True to show combined read/write io graphs in io mode.
120 io_graph_combined=False
121
122 #* Set the top speed for the io graphs in MiB/s (10 by default), use format "device:speed" separate disks with a comma ",".
123 #* Example: "/dev/sda:100, /dev/sdb:20"
124 io_graph_speeds=""
125
126 #* 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"
127 net_download="10M"
128 net_upload="10M"
129
130 #* Start in network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
131 net_auto=True
132
133 #* Sync the scaling for download and upload to whichever currently has the highest scale
134 net_sync=False
135
136 #* If the network graphs color gradient should scale to bandwidth usage or auto scale, bandwidth usage is based on "net_download" and "net_upload" values
137 net_color_fixed=False
138
139 #* Starts with the Network Interface specified here.
140 net_iface=""
141
142 #* Show battery stats in top right if battery is present
143 show_battery=True
144
145 #* Show init screen at startup, the init screen is purely cosmetical
146 show_init=True
147
148 #* Enable check for new version from github.com/aristocratos/bpytop at start.
149 update_check=True
150
151 #* Set loglevel for "~/.config/bpytop/error.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
152 #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
153 log_level=WARNING