mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
(no version change)
trying to get an Arch failure to show rendering status fixed
This commit is contained in:
parent
2a9eb185c4
commit
b345aec205
5
inxi
5
inxi
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 1.0.7-b1-t2
|
#### version: 1.0.7-b1-t3
|
||||||
#### Date: 13 March 2009
|
#### Date: 13 March 2009
|
||||||
########################################################################
|
########################################################################
|
||||||
#### SPECIAL THANKS
|
#### SPECIAL THANKS
|
||||||
|
@ -1893,7 +1893,8 @@ get_graphics_glx_data()
|
||||||
# A_GLX_DATA=( $( glxinfo | gawk -F ': ' '
|
# A_GLX_DATA=( $( glxinfo | gawk -F ': ' '
|
||||||
# A_GLX_DATA=( $( cat ../../modules/data/glxinfo-atom-1r | gawk -F ': ' '
|
# A_GLX_DATA=( $( cat ../../modules/data/glxinfo-atom-1r | gawk -F ': ' '
|
||||||
# A_GLX_DATA=( $( cat ../../modules/data/glxinfo-intel-sput | gawk -F ': ' '
|
# A_GLX_DATA=( $( cat ../../modules/data/glxinfo-intel-sput | gawk -F ': ' '
|
||||||
A_GLX_DATA=( $( glxinfo | gawk -F ': ' '
|
# there are arch bugs that make glxinfo generate bad output errors
|
||||||
|
A_GLX_DATA=( $( glxinfo 2>/dev/null | gawk -F ': ' '
|
||||||
|
|
||||||
# note: function declarations go before BEGIN? It appears so, confirm.
|
# note: function declarations go before BEGIN? It appears so, confirm.
|
||||||
# the real question here though is why this function is even here, seems
|
# the real question here though is why this function is even here, seems
|
||||||
|
|
Loading…
Reference in a new issue