mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-29 16:44:54 +02:00
docs: update default config
This commit is contained in:
parent
25addaee63
commit
121370e9f4
@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows. Inspired by both [gtop](https://github.com/aksakalli/gtop) and [gotop](https://github.com/cjbassi/gotop).
|
A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows. Inspired by both [gtop](https://github.com/aksakalli/gtop) and [gotop](https://github.com/cjbassi/gotop).
|
||||||
|
|
||||||
<!--TODO: Update recording for 0.4-->
|
|
||||||
|
|
||||||
 _Theme based on [gruvbox](https://github.com/morhetz/gruvbox) (see [sample config](./sample_configs/demo_config.toml))._ Recorded on version 0.2.0.
|
 _Theme based on [gruvbox](https://github.com/morhetz/gruvbox) (see [sample config](./sample_configs/demo_config.toml))._ Recorded on version 0.2.0.
|
||||||
|
|
||||||
**Note**: This documentation is relevant to version 0.4.0 and may refer to in-development features, especially if you are reading this on the master branch. Please refer to [release branch](https://github.com/ClementTsang/bottom/tree/release/README.md) or [crates.io](https://crates.io/crates/bottom) for the most up-to-date _release_ documentation.
|
**Note**: This documentation is relevant to version 0.4.0 and may refer to in-development features, especially if you are reading this on the master branch. Please refer to [release branch](https://github.com/ClementTsang/bottom/tree/release/README.md) or [crates.io](https://crates.io/crates/bottom) for the most up-to-date _release_ documentation.
|
||||||
|
@ -59,6 +59,12 @@
|
|||||||
# Use basic mode
|
# Use basic mode
|
||||||
#basic = false
|
#basic = false
|
||||||
|
|
||||||
|
# Use the old network legend style
|
||||||
|
#use_old_network_legend = false
|
||||||
|
|
||||||
|
# Remove space in tables
|
||||||
|
#hide_table_gap = false
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
||||||
# These are all the components that support custom theming. Note that colour support
|
# These are all the components that support custom theming. Note that colour support
|
||||||
@ -67,7 +73,7 @@
|
|||||||
[colors]
|
[colors]
|
||||||
|
|
||||||
# Represents the colour of table headers (processes, CPU, disks, temperature).
|
# Represents the colour of table headers (processes, CPU, disks, temperature).
|
||||||
#table_header_color="LightBlue"
|
#table_header_color="Light Blue"
|
||||||
|
|
||||||
# Represents the colour of the label each widget has.
|
# Represents the colour of the label each widget has.
|
||||||
#widget_title_color="Gray"
|
#widget_title_color="Gray"
|
||||||
@ -94,7 +100,7 @@
|
|||||||
#border_color="Gray"
|
#border_color="Gray"
|
||||||
|
|
||||||
# Represents the colour of the border of selected widgets.
|
# Represents the colour of the border of selected widgets.
|
||||||
#highlighted_border_color="LightBlue"
|
#highlighted_border_color="Light Blue"
|
||||||
|
|
||||||
# Represents the colour of most text.
|
# Represents the colour of most text.
|
||||||
#text_color="Gray"
|
#text_color="Gray"
|
||||||
@ -103,11 +109,14 @@
|
|||||||
#selected_text_color="Black"
|
#selected_text_color="Black"
|
||||||
|
|
||||||
# Represents the background colour of text that is selected.
|
# Represents the background colour of text that is selected.
|
||||||
#selected_bg_color="Cyan"
|
#selected_bg_color="Light Blue"
|
||||||
|
|
||||||
# Represents the colour of the lines and text of the graph.
|
# Represents the colour of the lines and text of the graph.
|
||||||
#graph_color="Gray"
|
#graph_color="Gray"
|
||||||
|
|
||||||
|
# Represents the colours of the battery based on charge
|
||||||
|
#battery_colors = ["red", "yellow", "yellow", "green", "green", "green"]
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
||||||
# Layout - layouts follow a pattern like this:
|
# Layout - layouts follow a pattern like this:
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
use crate::app;
|
use crate::app;
|
||||||
use itertools::izip;
|
use itertools::izip;
|
||||||
|
|
||||||
// TODO: Reverse intrinsic?
|
|
||||||
/// A somewhat jury-rigged solution to simulate a variable intrinsic layout for
|
/// A somewhat jury-rigged solution to simulate a variable intrinsic layout for
|
||||||
/// table widths. Note that this will do one main pass to try to properly
|
/// table widths. Note that this will do one main pass to try to properly
|
||||||
/// allocate widths. This will thus potentially cut off latter elements
|
/// allocate widths. This will thus potentially cut off latter elements
|
||||||
|
Loading…
x
Reference in New Issue
Block a user