clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update

sspaeti d9a72370 e6bc5bc1

+63 -48
+63 -48
btop/.config/btop/btop.conf
··· 1 - #? Config file for btop v. 1.4.5 1 + #? Config file for btop v.1.4.6 2 2 3 3 #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. 4 4 #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" 5 5 color_theme = "current" 6 6 7 7 #* If the theme set background should be shown, set to False if you want terminal background transparency. 8 - theme_background = True 8 + theme_background = true 9 9 10 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 11 + truecolor = true 12 12 13 13 #* Set to true to force tty mode regardless if a real tty has been detected or not. 14 14 #* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. 15 - force_tty = False 15 + force_tty = false 16 16 17 17 #* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. 18 18 #* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. ··· 22 22 23 23 #* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. 24 24 #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. 25 - vim_keys = True 25 + vim_keys = true 26 26 27 27 #* Rounded corners on boxes, is ignored if TTY mode is ON. 28 - rounded_corners = True 28 + rounded_corners = true 29 + 30 + #* Use terminal synchronized output sequences to reduce flickering on supported terminals. 31 + terminal_sync = true 29 32 30 33 #* Default symbols to use for graph creation, "braille", "block" or "tty". 31 34 #* "braille" offers the highest resolution but might not be included in all fonts. ··· 60 63 proc_sorting = "cpu direct" 61 64 62 65 #* Reverse sorting order, True or False. 63 - proc_reversed = False 66 + proc_reversed = false 64 67 65 68 #* Show processes as a tree. 66 - proc_tree = False 69 + proc_tree = false 67 70 68 71 #* Use the cpu graph colors in the process list. 69 - proc_colors = True 72 + proc_colors = true 70 73 71 74 #* Use a darkening gradient in the process list. 72 - proc_gradient = True 75 + proc_gradient = true 73 76 74 77 #* If process cpu usage should be of the core it's running on or usage of the total available cpu power. 75 - proc_per_core = False 78 + proc_per_core = false 76 79 77 80 #* Show process memory as bytes instead of percent. 78 - proc_mem_bytes = True 81 + proc_mem_bytes = true 79 82 80 83 #* Show cpu graph for each process. 81 - proc_cpu_graphs = True 84 + proc_cpu_graphs = true 82 85 83 86 #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) 84 - proc_info_smaps = False 87 + proc_info_smaps = false 85 88 86 89 #* Show proc box on left side of screen instead of right. 87 - proc_left = False 90 + proc_left = false 88 91 89 92 #* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop). 90 - proc_filter_kernel = False 93 + proc_filter_kernel = false 91 94 92 95 #* In tree-view, always accumulate child process resources in the parent process. 93 - proc_aggregate = False 96 + proc_aggregate = false 97 + 98 + #* Should cpu and memory usage display be preserved for dead processes when paused. 99 + keep_dead_proc_usage = false 94 100 95 101 #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. 96 102 #* Select from a list of detected attributes from the options menu. ··· 104 110 show_gpu_info = "Auto" 105 111 106 112 #* Toggles if the lower CPU graph should be inverted. 107 - cpu_invert_lower = True 113 + cpu_invert_lower = true 108 114 109 115 #* Set to True to completely disable the lower CPU graph. 110 - cpu_single_graph = False 116 + cpu_single_graph = false 111 117 112 118 #* Show cpu box at bottom of screen instead of top. 113 - cpu_bottom = False 119 + cpu_bottom = false 114 120 115 121 #* Shows the system uptime in the CPU box. 116 - show_uptime = True 122 + show_uptime = true 117 123 118 124 #* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo. 119 - show_cpu_watts = True 125 + show_cpu_watts = true 120 126 121 127 #* Show cpu temperature. 122 - check_temp = True 128 + check_temp = true 123 129 124 130 #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. 125 131 cpu_sensor = "Auto" 126 132 127 133 #* Show temperatures for cpu cores also if check_temp is True and sensors has been found. 128 - show_coretemp = True 134 + show_coretemp = true 129 135 130 136 #* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. 131 137 #* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. ··· 137 143 temp_scale = "celsius" 138 144 139 145 #* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. 140 - base_10_sizes = False 146 + base_10_sizes = false 141 147 142 148 #* Show CPU frequency. 143 - show_cpu_freq = True 149 + show_cpu_freq = true 150 + 151 + #* How to calculate CPU frequency, available values: "first", "range", "lowest", "highest" and "average". 152 + freq_mode = "first" 144 153 145 154 #* Draw a clock at top of screen, formatting according to strftime, empty string to disable. 146 155 #* Special formatting: /host = hostname | /user = username | /uptime = system uptime 147 156 clock_format = "%X" 148 157 149 158 #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. 150 - background_update = True 159 + background_update = true 151 160 152 161 #* Custom cpu model name, empty string to disable. 153 162 custom_cpu_name = "" ··· 157 166 disks_filter = "" 158 167 159 168 #* Show graphs instead of meters for memory values. 160 - mem_graphs = True 169 + mem_graphs = true 161 170 162 171 #* Show mem box below net box instead of above. 163 - mem_below_net = False 172 + mem_below_net = false 164 173 165 174 #* Count ZFS ARC in cached and available memory. 166 - zfs_arc_cached = True 175 + zfs_arc_cached = true 167 176 168 177 #* If swap memory should be shown in memory box. 169 - show_swap = True 178 + show_swap = true 170 179 171 180 #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. 172 - swap_disk = True 181 + swap_disk = true 173 182 174 183 #* If mem box should be split to also show disks info. 175 - show_disks = True 184 + show_disks = true 176 185 177 186 #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. 178 - only_physical = True 187 + only_physical = true 179 188 180 189 #* Read disks list from /etc/fstab. This also disables only_physical. 181 - use_fstab = True 190 + use_fstab = true 182 191 183 192 #* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool) 184 - zfs_hide_datasets = False 193 + zfs_hide_datasets = false 185 194 186 195 #* Set to true to show available disk space for privileged users. 187 - disk_free_priv = False 196 + disk_free_priv = false 188 197 189 198 #* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. 190 - show_io_stat = True 199 + show_io_stat = true 191 200 192 201 #* Toggles io mode for disks, showing big graphs for disk read/write speeds. 193 - io_mode = False 202 + io_mode = false 194 203 195 204 #* Set to True to show combined read/write io graphs in io mode. 196 - io_graph_combined = False 205 + io_graph_combined = false 197 206 198 207 #* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". 199 208 #* Example: "/mnt/media:100 /:20 /boot:1". ··· 205 214 net_upload = 100 206 215 207 216 #* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. 208 - net_auto = True 217 + net_auto = true 209 218 210 219 #* Sync the auto scaling for download and upload to whichever currently has the highest scale. 211 - net_sync = True 220 + net_sync = true 212 221 213 222 #* Starts with the Network Interface specified here. 214 223 net_iface = "" ··· 217 226 base_10_bitrate = "Auto" 218 227 219 228 #* Show battery stats in top right if battery is present. 220 - show_battery = True 229 + show_battery = true 221 230 222 231 #* Which battery to use if multiple are present. "Auto" for auto detection. 223 232 selected_battery = "Auto" 224 233 225 234 #* Show power stats of battery next to charge indicator. 226 - show_battery_watts = True 235 + show_battery_watts = true 227 236 228 - #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". 237 + #* Set loglevel for "~/.local/state/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". 229 238 #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. 230 239 log_level = "WARNING" 240 + 241 + #* Automatically save current settings to config file on exit. 242 + save_config_on_exit = true 231 243 232 244 #* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards. 233 - nvml_measure_pcie_speeds = True 245 + nvml_measure_pcie_speeds = true 234 246 235 247 #* Measure PCIe throughput on AMD cards, may impact performance on certain cards. 236 - rsmi_measure_pcie_speeds = True 248 + rsmi_measure_pcie_speeds = true 237 249 238 250 #* Horizontally mirror the GPU graph. 239 - gpu_mirror_graph = True 251 + gpu_mirror_graph = true 252 + 253 + #* Set which GPU vendors to show. Available values are "nvidia amd intel" 254 + shown_gpus = "nvidia amd intel" 240 255 241 256 #* Custom gpu0 model name, empty string to disable. 242 257 custom_gpu_name0 = ""