2013-04-24 12:22:05 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
theme=`gsettings get org.mate.Marco.general theme | cut -d\' -f2`
|
|
|
|
|
|
|
|
echo "$theme"
|
|
|
|
|
|
|
|
function runCompiz() {
|
|
|
|
gtk-window-decorator --replace --marco-theme "$theme" &
|
2013-05-26 13:15:53 +00:00
|
|
|
exec compiz --replace ccp $@
|
2013-04-24 12:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 $@
|
|
|
|
|