compiz/compiz-mate-emerald

29 lines
512 B
Plaintext
Raw Normal View History

#!/bin/bash
function runCompiz() {
2013-04-24 12:24:41 +00:00
emerald --replace &
2013-05-26 13:18:43 +00:00
exec compiz --replace ccp $@
}
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 $@
2013-04-24 12:24:41 +00:00