mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
try at bug fix for dual output of graphics line
This commit is contained in:
parent
5838f7e003
commit
9c27241efd
17
inxi
17
inxi
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue