add compiz-decorator-emerald script

This commit is contained in:
raveit 2013-05-26 15:29:25 +02:00
parent d063282a0d
commit b71720e8f3
1 changed files with 24 additions and 0 deletions

24
compiz-decorator-emerald Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
function runEmerald() {
emerald --replace $@
}
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
runEmerald $@
fi