Yukuro / hugo-theme-shell

Hugo Shell theme : Terminal-like theme with selectable color schemes.
https://hugo-theme-shell-example.vercel.app/
MIT License
327 stars 109 forks source link

Tried to add a new cat and description (it worked), but the blinkin cursor doesn't appear #33

Open vitumen opened 2 years ago

vitumen commented 2 years ago

Followed the steps for it as in customize_terminal.md to add a 'cat2' and a 'description2', and it worked (even though i had to merge ps1_04 an ps1_05 because it generated an extra "user@laptop" line), but the thing is the blinkin cursor does not appear for that last line, it just prints the text using the animation.

Feel free to check my /layouts/ folder. Also, you can check vitu.men

Loved the theme btw, thanks for it and for your time.

ricocremer commented 1 month ago

Super late, but since the cursor still doesn't appear on your site: the css for the cursor can be found in default.scss.

#cd, #whoami, #cat, #tree {
    &:after {
        @extend .cursor;
    }
}

The ID of your "cat2" element should also be added to the list of selectors. :)