compiz/compiz-gtk

26 lines
539 B
Plaintext
Raw Normal View History

#!/bin/bash
2008-12-04 20:59:54 +00:00
function runCompiz() {
2008-12-04 20:59:54 +00:00
gtk-window-decorator &
exec compiz --ignore-desktop-hints glib gconf $@
}
HAVE3D=`glxinfo | grep "direct rendering: " | head -n 1 | cut -d " " -f 3`
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
if ( [ $HAVE3D == "Yes" ] && [ $HAVETFP -gt 2 ] ); then
runCompiz
fi
# Try again with indirect rendering
export LIBGL_ALWAYS_INDIRECT=1
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
if ( [ $HAVE3D == "Yes" ] && [ $HAVETFP -gt 2 ] ); then
runCompiz
2008-12-04 20:59:54 +00:00
fi
# Fall back to metacity
exec metacity $@