slide deck presentation tool written in pure bash

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

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