Python script to simulate the display from "The Matrix" in terminal. Uses half-width katakana unicode characters by default, but can use custom character sets. Accepts keyboard controls while running. Based on CMatrix.
GNU General Public License v3.0
1.73k
stars
159
forks
source link
Change underscores to hyphens in some args in help msg. #37
Long arguments --custom-characters and --single-wave were previously written as --custom_characters and --single_wave, which didn't work, because they are parsed with hyphens, not underscores. This PR changes help message in script and readme, so they display correct behavior.
Long arguments
--custom-characters
and--single-wave
were previously written as--custom_characters
and--single_wave
, which didn't work, because they are parsed with hyphens, not underscores. This PR changes help message in script and readme, so they display correct behavior.