0c56e6e1a537626d00414a2327f740b55ed113a0
[dotfiles/.git] / .config / bpytop / bpytop.conf
1 #? Config file for bpytop v. 1.0.59
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 #* 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", seperate 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 #* Check cpu temperature, needs "osx-cpu-temp" on MacOS X.
49 check_temp=True
50
51 #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
52 cpu_sensor=Auto
53
54 #* Show temperatures for cpu cores also if check_temp is True and sensors has been found
55 show_coretemp=True
56
57 #* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
58 draw_clock="%X"
59
60 #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
61 background_update=True
62
63 #* Custom cpu model name, empty string to disable.
64 custom_cpu_name=""
65
66 #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with a comma ",".
67 #* Begin line with "exclude=" to change to exclude filter, oterwise defaults to "most include" filter. Example: disks_filter="exclude=/boot, /home/user"
68 disks_filter=""
69
70 #* Show graphs instead of meters for memory values.
71 mem_graphs=True
72
73 #* If swap memory should be shown in memory box.
74 show_swap=True
75
76 #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
77 swap_disk=True
78
79 #* If mem box should be split to also show disks info.
80 show_disks=True
81
82 #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
83 only_physical=True
84
85 #* Read disks list from /etc/fstab. This also disables only_physical.
86 use_fstab=False
87
88 #* Toggles io mode for disks, showing only big graphs for disk read/write speeds.
89 io_mode=False
90
91 #* Set to True to show combined read/write io graphs in io mode.
92 io_graph_combined=False
93
94 #* Set the top speed for the io graphs in MiB/s (10 by default), use format "device:speed" seperate disks with a comma ",".
95 #* Example: "/dev/sda:100, /dev/sdb:20"
96 io_graph_speeds=""
97
98 #* 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"
99 net_download="10M"
100 net_upload="10M"
101
102 #* Start in network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
103 net_auto=True
104
105 #* Sync the scaling for download and upload to whichever currently has the highest scale
106 net_sync=False
107
108 #* 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
109 net_color_fixed=False
110
111 #* Starts with the Network Interface specified here.
112 net_iface=""
113
114 #* Show battery stats in top right if battery is present
115 show_battery=True
116
117 #* Show init screen at startup, the init screen is purely cosmetical
118 show_init=True
119
120 #* Enable check for new version from github.com/aristocratos/bpytop at start.
121 update_check=True
122
123 #* Set loglevel for "~/.config/bpytop/error.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
124 #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
125 log_level=WARNING