fix compiz-decorator-emerald

This commit is contained in:
raveit 2013-06-03 14:58:55 +02:00
parent ec4a8d7221
commit 9b6a176157
1 changed files with 7 additions and 16 deletions

View File

@ -1,24 +1,15 @@
#!/bin/bash
function runEmerald() {
emerald --replace $@
}
compiz=`ps ax | grep 'compiz --replace' | grep -v 'grep' | awk '{print $5}'`
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 $@
if [ "$compiz" = "compiz" ] ; then
emerald --replace &
echo "$compiz with Emerald windows-decorator"
else
exit 0
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
runEmerald $@
fi
exit 0