-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmacchina.toml
154 lines (132 loc) · 3.05 KB
/
macchina.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Disables color.
no_color = false
# Hides the separator.
no_separator = false
# Hides bar delimiters
no_bar_delimiter = false
# Hides the title of the box surrounding system information
no_title = true
# Disables the box surrounding system information.
no_box = true
# Disables ASCII art
no_ascii = false
# Specify your own ASCII art from a text file (supports ANSI escape codes)
# custom_ascii = "/path/to/text/file"
# Prefer small ASCII variant.
small_ascii = true
# Displays a palette of your active colorscheme
palette = false
# Turns data into bars for specific readouts
bar = true
# Randomizes the color of the keys each time your run the program
random_color = false
# Randomizes the color of the separator each time your run the program
random_sep_color = false
# Specify a color for the keys.
# Accepted values (case-sensitive):
# - White
# - Black
# - Blue
# - Cyan
# - Green
# - Yellow
# - Red
# - Magenta
color = "Red"
# Specify a color for the separator.
# Accepted values (case-sensitive):
# - White
# - Black
# - Blue
# - Cyan
# - Green
# - Yellow
# - Red
# - Magenta
separator_color = "Green"
# Shorten uptime format
short_uptime = true
# Lengthen shell output
long_shell = false
# Toggle between the current shell or the default one
# This feature has not yet landed in a release, only uncomment if using upstream
# current_shell = false
# Specify the title of the box
box_title = " Macchina "
# Specify the horizontal inner margin value of the box surrounding system information.
box_inner_margin_x = 1
# Specify the vertical inner margin value of the box surrounding system information.
box_inner_margin_y = 0
# Specify the theme to use
# Accepted values (case-insensitive):
# - Hydrogen
# - Helium
# - Lithium
# - Beryllium
# - Boron
#
# Custom themes are also supported, they should be placed
# in $XDG_DATA_HOME/macchina/themes and must be a JSON file.
#
# To set 'foobar' as a theme, place foobar.json
# in $XDG_DATA_HOME/macchina/themes
# and set theme = "foobar" (case-sensitive)
theme = "Boron"
# Hides the specified readouts.
# Conflicts with: show_only
# Accepted values (case-sensitive):
# - Host
# - Machine
# - Kernel
# - Distribution
# - OperatingSystem
# - DesktopEnvironment
# - WindowManager
# - Resolution
# - Backlight
# - Packages
# - LocalIP
# - Terminal
# - Shell
# - Uptime
# - Processor
# - ProcessorLoad
# - Memory
# - Battery
# Example:
# hide = ["Battery", "Memory", ...]
hide = [
'Kernel',
'Machine',
'DesktopEnvironment',
'WindowManager',
'Terminal',
'Packages',
'Processor',
'Resolution',
'Shell',
]
# Displays only the specified readouts.
# Conflicts with: hide
# Accepted values (case-sensitive):
# - Host
# - Machine
# - Kernel
# - Distribution
# - OperatingSystem
# - DesktopEnvironment
# - WindowManager
# - Resolution
# - Backlight
# - Packages
# - LocalIP
# - Terminal
# - Shell
# - Uptime
# - Processor
# - ProcessorLoad
# - Memory
# - Battery
# Example:
# show_only = ["Battery", "Memory", ...]
# show_only = []