this repo has no description
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix cursor was returning to the top left on exit (#9)

Realized that the cursor was not immediately returning to the top left of the screen when the shlide script had finished so added this functionality to the die function so that no matter how the application finishes the cursor will be properly reset for the user to continue their terminal experience

authored by

Benjamin Kadel and committed by
GitHub
032c477f b16457ec

+1
+1
shlide
··· 111 111 die() { 112 112 printf '\e[2J' 113 113 printf '\e[?25h' 114 + printf '\e[0H' 114 115 exit 0 115 116 } 116 117