fe0441c6be
- disable mateconf and use libini text file configuration backend - remove mateconf from scriptlet section - move glib annotate svg plugins to core package - disable gtk-windows-decorator - drop compiz-mate-gtk compiz session script - disable gtk-windows-decorator patches - disable marco/metacity - disable mate/gnome - disable mate/gnome keybindings - insert compiz-mate-emerald compiz session script - insert compiz-xfce-emerald compiz session script - insert compiz-lxde-emerald compiz session script - add emerald as require - add matecompat icon - add icon cache scriptlets
33 lines
796 B
Bash
33 lines
796 B
Bash
#!/bin/bash
|
|
|
|
function runCompiz() {
|
|
if ( [ -e /usr/lib/compizconfig/backends/libini.so ] || [ -e /usr/lib64/compizconfig/backends/libini.so ] )
|
|
then
|
|
exec compiz --replace --sm-disable --ignore-desktop-hints ccp &&
|
|
emerald --replace $@
|
|
else
|
|
exec compiz --replace --sm-disable --ignore-desktop-hints ccp glib ini $@
|
|
fi
|
|
}
|
|
|
|
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 $@
|