add compiz-xfce-gtk script

This commit is contained in:
raveit 2013-04-24 14:31:25 +02:00
parent d2dfa258c8
commit 7fcbcc8655

32
compiz-xfce-gtk Executable file
View File

@ -0,0 +1,32 @@
#!/bin/bash
theme=`xfconf-query -c xfwm4 -p /general/theme`
echo "$theme"
function runCompiz() {
gtk-window-decorator --replace --marco-theme "$theme" &
exec compiz --replace --sm-disable --ignore-desktop-hints ccp $@
}
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 xfwm4
exec xfwm4 $@