compiz/compiz-lxde-emerald

29 lines
526 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
function runCompiz() {
2013-04-24 12:38:58 +00:00
emerald --replace &
2013-05-26 13:20:46 +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 openbox-lxde
exec openbox-lxde $@
2013-04-24 12:38:58 +00:00