1ad7ce9732
- remove (noreplace) from mateconf schema dir - remove Requires(post): desktop-file-utils - add epoch tags
33 lines
764 B
Bash
33 lines
764 B
Bash
#!/bin/bash
|
|
|
|
function runCompiz() {
|
|
gtk-window-decorator &
|
|
if ( [ -e /usr/lib/compizconfig/backends/libmateconf.so ] || [ -e /usr/lib64/compizconfig/backends/libmateconf.so ] )
|
|
then
|
|
exec compiz --ignore-desktop-hints ccp $@
|
|
else
|
|
exec compiz --ignore-desktop-hints glib mateconf matecompat $@
|
|
fi
|
|
}
|
|
|
|
ISSW=`glxinfo | grep "Software Rasterizer" -c`
|
|
|
|
# Try with direct rendering
|
|
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
|
|
|
|
if ( [ $ISSW == 0 ] && [ $HAVETFP -gt 2 ] ); then
|
|
runCompiz $@
|
|
fi
|
|
|
|
# Try again with indirect rendering
|
|
export LIBGL_ALWAYS_INDIRECT=1
|
|
|
|
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
|
|
|
|
if ( [ $ISSW == 0 ] && [ $HAVETFP -gt 2 ] ); then
|
|
runCompiz $@
|
|
fi
|
|
|
|
# Fall back to marco
|
|
exec marco $@
|