fix compiz-decorator-gtk

This commit is contained in:
raveit 2013-06-03 15:00:25 +02:00
parent 9b6a176157
commit 5780b844f3
1 changed files with 9 additions and 20 deletions

View File

@ -1,29 +1,18 @@
#!/bin/bash
compiz=`ps ax | grep 'compiz --replace' | grep -v 'grep' | awk '{print $5}'`
theme=`gsettings get org.mate.Marco.general theme | cut -d\' -f2`
echo "$theme"
function runGTK() {
gtk-window-decorator --replace --marco-theme "$theme" $@
}
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
runGTK $@
if [ "$compiz" = "compiz" ] ; then
gtk-window-decorator --replace --marco-theme "$theme" &
echo "$compiz with GTK windows-decorator"
echo "GTK theme is $theme"
else
exit 0
fi
exit 0