[lastbash-cvs] lastbash lastbash,1.89,1.90
Status: Beta
Brought to you by:
cstroie
|
From: Costin S. <cs...@us...> - 2006-12-07 22:47:27
|
Update of /cvsroot/lastbash/lastbash In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv29680 Modified Files: lastbash Log Message: Minimum terminal width reduced to 40. Index: lastbash =================================================================== RCS file: /cvsroot/lastbash/lastbash/lastbash,v retrieving revision 1.89 retrieving revision 1.90 diff -u -d -r1.89 -r1.90 --- lastbash 7 Dec 2006 22:41:11 -0000 1.89 +++ lastbash 7 Dec 2006 22:47:24 -0000 1.90 @@ -163,9 +163,9 @@ # Check a minimum terminal size T_LINES=$(tput lines) T_COLUMNS=$(tput cols) - if [ "${T_LINES}" -lt 15 ] || [ "${T_COLUMNS}" -lt 60 ] + if [ "${T_LINES}" -lt 15 ] || [ "${T_COLUMNS}" -lt 40 ] then - echo "Minimum terminal size is 60x15, your is ${T_COLUMNS}x${T_LINES}" + echo "Minimum terminal size is 40x15, your is ${T_COLUMNS}x${T_LINES}" debug "Terminal size insufficient: ${T_COLUMNS}x${T_LINES}" exit 1 fi |