Skip to main content

max / alloy_tui

2.2 KB · 77 lines History Blame Raw
1 # Alloy bottom (btm) configuration
2 #
3 # Alloy light-mode palette on graphs, borders, and text. Vi-flavored
4 # defaults inherited from bottom; overrides where sensible.
5
6 [flags]
7 avg_cpu = true
8 temperature_type = "celsius"
9 rate = "1s"
10 default_widget_type = "cpu"
11 default_widget_count = 1
12 disable_click = true # keyboard-only
13 tree = false
14 color = "default"
15 mem_as_value = false
16 hide_time = false
17 hide_avg_cpu = false
18 dot_marker = false
19 group_processes = false
20 case_sensitive = false
21 whole_word = false
22 regex = false
23 show_table_scroll_position = true
24 process_command = false
25 disable_advanced_kill = false
26 network_use_bytes = false
27 network_use_log = false
28 network_use_binary_prefix = true
29 enable_gpu = true
30 retention = "10m"
31 unnormalized_cpu = false
32
33 # -------------------------------------------------------------------
34 # Colors — Alloy light-mode palette (docs/TOKENS.md)
35 # -------------------------------------------------------------------
36 [styles.tables]
37 headers = { color = "#222d38", modifiers = ["bold"] }
38
39 [styles.graphs]
40 graph_color = "#cabeae"
41
42 [styles.widgets]
43 border_color = "#dad2c7"
44 selected_border_color = "#b07840"
45 widget_title = { color = "#222d38" }
46 text = { color = "#1a1816" }
47 selected_text = { color = "#1a1816", bg_color = "#dad2c7" }
48 disabled_text = { color = "#514b45" }
49
50 [styles.cpu]
51 all_entry_color = "#1a1816"
52 avg_entry_color = "#222d38"
53 cpu_core_colors = [
54 "#b07840", # accent-warn
55 "#6a2828", # accent-error
56 "#3a5830", # accent-ok
57 "#222d38", # text-secondary
58 "#514b45", # text-muted
59 "#7f786d", # border-strong
60 ]
61
62 [styles.memory]
63 ram_color = "#3a5830"
64 swap_color = "#b07840"
65 cache_color = "#514b45"
66
67 [styles.network]
68 rx_color = "#3a5830"
69 tx_color = "#b07840"
70 rx_total_color = "#222d38"
71 tx_total_color = "#514b45"
72
73 [styles.battery]
74 high_battery_color = "#3a5830"
75 medium_battery_color = "#b07840"
76 low_battery_color = "#6a2828"
77