You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,18 +83,17 @@ Here are some examples of how to use the different configuration options:
83
83
The different configuration options available in this project are:
84
84
85
85
*`mode`: The character symbol set to use. Valid options include "Original", "Binary", "Decimal", "Math", "ASCII", "Braille", "Emoji", and custom sets like "abc123".
86
-
*`stream_color`: The color of the streaming entities, specified as an RGB value (e.g., "0,255,70").
86
+
*`stream_color`: The color of the streaming entities(e.g., `"0,255,70"`, `"#00FF00"`, or `"green"`).
87
87
*`stream_color_gradient_factor`: The multiplier that describes the extent of the gradient in the stream color.
88
-
*`leading_entity_color`: The color of the leading entity in a stream, specified as an RGB value (e.g., "200,255,200").
88
+
*`leading_entity_color`: The color of the leading entity in a stream(e.g., `"200,255,200"`, `"#C8FFC8"`, or `"white"`).
89
89
*`leave_trail`: A boolean option to leave the trail intact as the streams pass by.
90
90
*`fps`: The frame rate to run at, specified as the number of frames per second.
91
+
*`direction`: The direction of motion for the stream particles (e.g., `"down"`, `"up"`, `"left"`, `"right"`, `"diagonal-right"`, etc.).
91
92
*`stream_min_count`: The minimum number of entities per stream.
92
93
*`stream_max_count`: The maximum number of entities per stream.
93
94
*`stream_spacing`: The spacing between the streams, specified as the number of columns between each stream.
94
95
*`switch_interval`: The maximum number of seconds within which an entity randomly switches its symbol.
95
96
96
-
These options are defined in the `src/config.rs` file.
97
-
98
97
### Modes
99
98
100
99
The different modes available for the `mode` option are:
@@ -108,8 +107,6 @@ The different modes available for the `mode` option are:
108
107
* "Emoji" | "Cursed": Emojis
109
108
* Custom sets like "abc123": User-defined symbol set
110
109
111
-
These modes are defined in the `src/config.rs` file.
112
-
113
110
### Customizing the Symbol Set
114
111
115
112
To specify custom character sets for the `mode` option, you can use the `Custom` variant of the `Symbols` enum.
0 commit comments