@@ -557,7 +557,7 @@ Also needs a UTF8 locale and a font that covers:
557
557
```
558
558
sudo snap install btop --edge
559
559
```
560
-
560
+
561
561
* **Connect the interface**
562
562
563
563
```bash
@@ -573,14 +573,14 @@ Config and log files stored in `$XDG_CONFIG_HOME/btop` or `$HOME/.config/btop` f
573
573
#### btop.cfg: (auto generated if not found)
574
574
575
575
```bash
576
- #? Config file for btop v. 0.1.0
576
+ #? Config file for btop v. 1.2.2
577
577
578
578
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
579
579
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
580
580
color_theme = "Default"
581
581
582
582
#* If the theme set background should be shown, set to False if you want terminal background transparency.
583
- theme_background = False
583
+ theme_background = True
584
584
585
585
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
586
586
truecolor = True
@@ -595,6 +595,10 @@ force_tty = False
595
595
#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
596
596
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
597
597
598
+ #* Set to True to enable "h,j,k,l" keys for directional control in lists.
599
+ #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift.
600
+ vim_keys = False
601
+
598
602
#* Rounded corners on boxes, is ignored if TTY mode is ON.
599
603
rounded_corners = True
600
604
@@ -618,10 +622,10 @@ graph_symbol_net = "default"
618
622
graph_symbol_proc = "default"
619
623
620
624
#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace.
621
- shown_boxes = "cpu mem net proc "
625
+ shown_boxes = "proc cpu mem net"
622
626
623
627
#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
624
- update_ms = 2000
628
+ update_ms = 1500
625
629
626
630
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive",
627
631
#* "cpu lazy" sorts top process over time (easier to follow), "cpu responsive" updates top process directly.
@@ -689,6 +693,9 @@ cpu_core_map = ""
689
693
# * Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine".
690
694
temp_scale = " celsius"
691
695
696
+ # * Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
697
+ base_10_sizes = False
698
+
692
699
# * Show CPU frequency.
693
700
show_cpu_freq = True
694
701
@@ -727,6 +734,9 @@ only_physical = True
727
734
# * Read disks list from /etc/fstab. This also disables only_physical.
728
735
use_fstab = False
729
736
737
+ # * Set to true to show available disk space for privileged users.
738
+ disk_free_priv = False
739
+
730
740
# * Toggles if io activity % (disk busy time) should be shown in regular disk usage view.
731
741
show_io_stat = True
732
742
@@ -757,6 +767,9 @@ net_iface = "br0"
757
767
# * Show battery stats in top right if battery is present.
758
768
show_battery = True
759
769
770
+ # * Which battery to use if multiple are present. "Auto" for auto detection.
771
+ selected_battery = " Auto"
772
+
760
773
# * Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
761
774
# * The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
762
775
log_level = " DEBUG"
0 commit comments