added in handling for when the vendor string for xorg is NOT xorg, but something else, like fedora

This commit is contained in:
inxi-svn 2010-08-24 20:10:32 +00:00
parent 3b102a7b43
commit 3438103c7a

11
inxi
View file

@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
######################################################################## ########################################################################
#### Script Name: inxi #### Script Name: inxi
#### version: 1.4.12 #### version: 1.4.13
#### Date: July 24 2010 #### Date: August 24 2010
######################################################################## ########################################################################
#### SPECIAL THANKS #### SPECIAL THANKS
######################################################################## ########################################################################
@ -2534,6 +2534,13 @@ get_graphics_x_data()
print $2 print $2
}' ) }' )
fi fi
# some distros, like fedora, report themselves as the xorg vendor, so quick check
# here to make sure the vendor string includes Xorg in string
if [[ -z $( grep -E '(X|xorg|x\.org)' <<< $x_vendor ) ]];then
x_vendor="$x_vendor X.org"
fi
A_X_DATA[0]="$x_vendor" A_X_DATA[0]="$x_vendor"
A_X_DATA[1]="$x_version" A_X_DATA[1]="$x_version"