From 33fdeb80d6dcf8dcc72f7af711e522740f459836 Mon Sep 17 00:00:00 2001 From: raveit Date: Mon, 29 Apr 2013 12:26:51 +0200 Subject: [PATCH] remove compiz-xfce-gtk start script --- compiz-xfce-gtk | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 compiz-xfce-gtk diff --git a/compiz-xfce-gtk b/compiz-xfce-gtk deleted file mode 100755 index 8f5e208..0000000 --- a/compiz-xfce-gtk +++ /dev/null @@ -1,32 +0,0 @@ -#!/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 $@ -