add compiz-lxde-gtk script
This commit is contained in:
parent
7f994bcdab
commit
f3e661f788
34
compiz-lxde-gtk
Executable file
34
compiz-lxde-gtk
Executable file
@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd $HOME
|
||||
|
||||
theme=`cat .config/lxsession/LXDE/desktop.conf | grep sNet/ThemeName | cut -d\= -f2`
|
||||
|
||||
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 openpox-lxde
|
||||
exec openbox-lxde $@
|
||||
|
Loading…
Reference in New Issue
Block a user