mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
Fixed obscure bug in gawk for gfx data in get gfx
This commit is contained in:
parent
a9e0462c43
commit
d1694d1374
4
inxi
4
inxi
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 0.1.42
|
#### version: 0.1.43
|
||||||
#### Date: October 29 2008
|
#### Date: October 29 2008
|
||||||
########################################################################
|
########################################################################
|
||||||
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
||||||
|
@ -928,7 +928,7 @@ get_graphics_data()
|
||||||
XVER="$XVENDOR $XVERNUM"
|
XVER="$XVENDOR $XVERNUM"
|
||||||
|
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
A_GFX_DATA=( $( glxinfo | gawk -F ': ' '
|
GLX=($(glxinfo | gawk -F ': ' '
|
||||||
function join(arr, sep) {
|
function join(arr, sep) {
|
||||||
s=""
|
s=""
|
||||||
i=flag=0
|
i=flag=0
|
||||||
|
|
Loading…
Reference in a new issue