You are talking about the number_of_desktops key, right? So that clicking on each of the workspace switcher's "boxes" rotate the cube automatically, right?
Right, so no one has fixed this, but I found a way around. I created this little script:
- Code: Select all
#!/bin/sh
# Compiz workspace switcher fix
gconftool-2 -s /apps/compiz/general/screen0/options/number_of_desktops "2" --type=int &&
sleep 1 &&
gconftool-2 -s /apps/compiz/general/screen0/options/number_of_desktops "1" --type=int
This will set the number_of_desktops to 2, then set it back to one, like you do it manually. This makes the workspace switcher work. I call this from my compiz startup script, like this:
- Code: Select all
#!/bin/sh
# Compiz startup script
compiz --replace --use-cow gconf &
gtk-window-decorator --replace &
fixws
Good luck!
AMGeeX