Skip to content

Instantly share code, notes, and snippets.

@sumpygump
Created October 16, 2013 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumpygump/7002171 to your computer and use it in GitHub Desktop.
Save sumpygump/7002171 to your computer and use it in GitHub Desktop.
Normal
#!/bin/bash
message="Resuming Normal Mode"
width=`tput cols`
height=`tput lines`
len=${#message}
tput clear
tput cup $(($height/2)) $((($width-$len)/2))
echo $message
tput cup $height 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment