Last active
January 10, 2021 14:53
-
-
Save TheSainEyereg/4a8eed96ec6e1f4119cf1f165109b237 to your computer and use it in GitHub Desktop.
Discord Animated status terminal cursor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let string = 'root@olejka.ru $ ' | |
| let even = () => { | |
| let d = new Date(); | |
| return d.getSeconds()%2==0 | |
| } | |
| if (even()) {string+='▌'} | |
| new String(string) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "eval let string=\"root@olejka.ru $ \",even=()=>{return(new Date).getSeconds()%2==0};even()&&(string+=\"▌\"),new String(string)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment