You are not logged in.
I upgraded quinn's compiz/plugins today (0.0.13.45_0ubuntu1-1/0.16_0ubuntu1-1) and found that there is a new config GUI called "csm" and old gconf has been dumped. And there are some problems you will encounter if you're going to upgrade: · As I know, csm doesn't migrate your old gconf configs. · Many options are no longer automatically updated after you change them - you may have to restart compiz · gconf plugin has been removed, it's not even optional.You can see my repository info there => http://aquila.deus.googlepages.com/archlinuxpackages
Cheers!
Offline
What i have to change of my previous (using Arch Wiki) compiz xgl installation and configuration?
can you upload the cgwd-themer?Thanks
Hi! cgwd-themer is inside the cgwd package. Installation is the same, except for that now you also have to pacman -S csm.
Your previous compiz settings in gconf will just be gone - you need to re-configure it using csm.
Offline
Quick question on your repo...
I appears that you have been keeping up with the new interfaces and such, but Im confused at how I would install your versions of Xgl/Compiz in comparison to the Arch Wiki.
I noticed that gconf didnt work a while ago, so I simply used the defaults. I would like to use your version, but how?
Do I follow the Arch Linux Wiki page and use your repo instead of their's?
Do I create the files the same way, subsituting the compiz --replace <Long> with compiz --replace dbus csm (Or something like that?)
Sorry for all the questions, but this project is moving so fast its hard to keep up with
Thanks!!!
Joe
Offline
Well, I figured it out ok, and it all works,,,
You have to use dbus-launch for all the commands, however...
Also, when I run dbus-launch cgwd, I dont see any themes... is there a seperate theme package now?
Thanks!!!
Joe
Offline
wow! all my package conflict nightmare is over!
i use launch dbus-launcher csm, but the compiz configuration doesn't change
suggestion:
Can you edit the
usr/share/applications/csm.desktop and /usr/share/applications/gcompizthemer.desktop to make easier the use of the packages ?
Offline
here's my solution. Now compiz looks great!!
$ cat /usr/bin/compizrc
#!/bin/bash
if [ `ps -A | grep Xgl | wc -l` == "1" ]; then
LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/ LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2
dbus-launch compiz --replace dbus csm miniwin decoration transset
place state wobbly fade minimize cube rotate zoom
scale move resize place switcher trailfocus water bs &
dbus-launch cgwd --replace &
fi
Offline
here's my solution. Now compiz looks great!!
$ cat /usr/bin/compizrc
#!/bin/bash
if [ `ps -A | grep Xgl | wc -l` == "1" ]; then
LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/ LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2
dbus-launch compiz --replace dbus csm miniwin decoration transset
place state wobbly fade minimize cube rotate zoom
scale move resize place switcher trailfocus water bs &
dbus-launch cgwd --replace &
fi
LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/ LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2 compiz --indirect-rendering --strict-binding --replace dbus csm &
cgwd --replace &
gruß
Offline
here's my solution. Now compiz looks great!!
$ cat /usr/bin/compizrc
#!/bin/bash
if [ `ps -A | grep Xgl | wc -l` == "1" ]; then
LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/ LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2
dbus-launch compiz --replace dbus csm miniwin decoration transset
place state wobbly fade minimize cube rotate zoom
scale move resize place switcher trailfocus water bs &
dbus-launch cgwd --replace &
fi
Mine is even more simple and works like a charm...
#!/bin/bash
if [ `ps -A | grep Xgl | wc -l` == "1" ]; then
LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/
LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2
dbus-launch compiz --replace dbus csm &
dbus-launch cgwd --replace &
xmodmap -e "keycode 22 = BackSpace"
fi
Offline
{
__GL_SYNC_TO_VBLANK=0 Xgl :5 +kb -ac -br -accel glx:pbuffer -accel xv:fbo -fullscreen -lines -vbo -xvfilter linear -vertextype float >/tmp/xgl.log 2>&1
echo "EXIT $?" >>/tmp/xgl.log
}&
export DISPLAY=:5
sleep 2
#__GL_FSAA_MODE=2 __GL_LOG_MAX_ANISO=1 __GL_SYNC_TO_VBLANK=1 LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib compiz --replace gconf decoration wobbly fade minimize cube rotate scale move
__GL_FSAA_MODE=2 __GL_LOG_MAX_ANISO=1 __GL_SYNC_TO_VBLANK=1 LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib compiz --replace dbus csm >/tmp/compiz.log 2>&1 &
#cgwd &
gnome-window-decorator &
Offline
jotapesan wrote:here's my solution. Now compiz looks great!!
$ cat /usr/bin/compizrc
#!/bin/bash
if [ `ps -A | grep Xgl | wc -l` == "1" ]; then
LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/ LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2
dbus-launch compiz --replace dbus csm miniwin decoration transset
place state wobbly fade minimize cube rotate zoom
scale move resize place switcher trailfocus water bs &
dbus-launch cgwd --replace &
fiMine is even more simple and works like a charm...
#!/bin/bash if [ `ps -A | grep Xgl | wc -l` == "1" ]; then LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib/ LD_PRELOAD=/opt/mesa-xgl-cvs/lib/libGL.so.1.2 dbus-launch compiz --replace dbus csm & dbus-launch cgwd --replace & xmodmap -e "keycode 22 = BackSpace" fi
so.. is not necesary to load all the plugins ????/ interesting... ill give it a try...
Offline
so.. is not necesary to load all the plugins ????/ interesting... ill give it a try...
Most plugins are loaded by default in the latest compiz. You can use csm to turn on the others later.
Offline
{ __GL_SYNC_TO_VBLANK=0 Xgl :5 +kb -ac -br -accel glx:pbuffer -accel xv:fbo -fullscreen -lines -vbo -xvfilter linear -vertextype float >/tmp/xgl.log 2>&1 echo "EXIT $?" >>/tmp/xgl.log }& export DISPLAY=:5 sleep 2 #__GL_FSAA_MODE=2 __GL_LOG_MAX_ANISO=1 __GL_SYNC_TO_VBLANK=1 LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib compiz --replace gconf decoration wobbly fade minimize cube rotate scale move __GL_FSAA_MODE=2 __GL_LOG_MAX_ANISO=1 __GL_SYNC_TO_VBLANK=1 LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib compiz --replace dbus csm >/tmp/compiz.log 2>&1 & #cgwd & gnome-window-decorator &
What * is * this?
Frumpus ♥ addict
[mu'.krum.pus], [frum.pus]
Offline
aquila_deus wrote:{ __GL_SYNC_TO_VBLANK=0 Xgl :5 +kb -ac -br -accel glx:pbuffer -accel xv:fbo -fullscreen -lines -vbo -xvfilter linear -vertextype float >/tmp/xgl.log 2>&1 echo "EXIT $?" >>/tmp/xgl.log }& export DISPLAY=:5 sleep 2 #__GL_FSAA_MODE=2 __GL_LOG_MAX_ANISO=1 __GL_SYNC_TO_VBLANK=1 LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib compiz --replace gconf decoration wobbly fade minimize cube rotate scale move __GL_FSAA_MODE=2 __GL_LOG_MAX_ANISO=1 __GL_SYNC_TO_VBLANK=1 LD_LIBRARY_PATH=/opt/mesa-xgl-cvs/lib compiz --replace dbus csm >/tmp/compiz.log 2>&1 & #cgwd & gnome-window-decorator &
What * is * this?
It starts xgl and compiz with nvidia-specific settings
Offline
... is it your ... errrh ... xinitrc? Sometimes my brain is .... slow.
Frumpus ♥ addict
[mu'.krum.pus], [frum.pus]
Offline