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
I've been grabbing lil tidbits of the internet on where to learn things that might help add features to this, and I have just the thing for this one, with code example through python curses:
When text is truncated it should automatically scroll left and right on an interval.
E.g. given the text "Never gonna give you up - Rick Astley"
You would move the truncation offset about 1 character every 500ms until the end is reached (at which point it should reverse).
There should also be a short delay (2 seconds or so) when the truncation offset reaches 0 again.
e.g. (the bar represents the truncation)
rendered:
Never gonna give...
~500ms later:
rendered:
ever gonna give ...
~500ms later:
rendered:
ver gonna give y...
... etc
The text was updated successfully, but these errors were encountered: