try at bug fix for dual output of graphics line

This commit is contained in:
inxi-svn 2008-10-29 07:29:17 +00:00
parent 5838f7e003
commit 9c27241efd

17
inxi
View file

@ -1,7 +1,7 @@
#!/bin/bash
########################################################################
#### Script Name: inxi
#### version: 0.1.30
#### version: 0.1.31
#### Date: October 28 2008
########################################################################
#### inxi is a fork of infobash, the original bash sys info script by locsmif
@ -1182,12 +1182,15 @@ print_it_out()
fi
done
i=1
while [[ -n ${GFX[i]} && $i -le 3 ]]
do
long_gfx=$( echo -ne " ${C1}Card $(($i+1))${C2} ${GFX[i]} " )
(( i++ ))
done
if [[ ${#GFX[@]} -gt 1 ]]
then
i=1
while [[ -n ${GFX[i]} && $i -le 3 ]]
do
long_gfx=$( echo -ne " ${C1}Card $(($i+1))${C2} ${GFX[i]} " )
(( i++ ))
done
fi
long_gfx=$( printf "${C1}%-${INDENT}s${C2} %s" "Graphics Info" "${C1}Card 1${C2} ${GFX[0]}${long_gfx}" )
if ((X))
then