add compiz-xfce-emerald script

This commit is contained in:
raveit 2013-05-26 15:23:13 +02:00
parent 365f8b8217
commit cf3e28a172
1 changed files with 28 additions and 0 deletions

28
compiz-xfce-emerald Executable file
View File

@ -0,0 +1,28 @@
#!/bin/bash
function runCompiz() {
emerald --replace &
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 xfwm4
exec xfwm4 $@