diff --git a/inxi b/inxi index 9e6f5c6..83a92aa 100755 --- a/inxi +++ b/inxi @@ -1,7 +1,7 @@ #!/bin/bash ######################################################################## #### Script Name: inxi -#### version: 1.0.7-b1-t2 +#### version: 1.0.7-b1-t3 #### Date: 13 March 2009 ######################################################################## #### SPECIAL THANKS @@ -1893,7 +1893,8 @@ get_graphics_glx_data() # A_GLX_DATA=( $( glxinfo | 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=( $( 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. # the real question here though is why this function is even here, seems