compiz/compiz-gtk

29 lines
672 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 &
2009-05-25 19:46:42 +00:00
exec compiz --ignore-desktop-hints glib gconf gnomecompat$@
}
DIRECT=`glxinfo | grep "direct rendering: " | head -n 1 | cut -d " " -f 3`
ISSW=`glxinfo | grep "Software Rasterizer" -c`
# Disabled for now, does not work as expected
#HAVETFP=`glxinfo | grep texture_from_pixmap -c`
#if ( [ $HAVE3D == "Yes" ] && [ $HAVETFP -gt 2 ] ); then
2009-03-16 14:05:01 +00:00
# runCompiz $@
#fi
# Try again with indirect rendering
export LIBGL_ALWAYS_INDIRECT=1
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
if ( [ $DIRECT == "Yes" ] && [ $ISSW == 0 ] && [ $HAVETFP -gt 2 ] ); then
2009-03-16 14:05:01 +00:00
runCompiz $@
2008-12-04 20:59:54 +00:00
fi
# Fall back to metacity
exec metacity $@