You are not logged in.
(Sorry if this has been posted but I couldn't find a complete one so I will try to write one.)
I got this working quite easily actually. Since I couldn't find a way to get Openbox right-click menu to work with it, I went with lxpanel. It's a lightweight panel and has a menu. First of all you should install those packages:
pacman -S compiz-fusion lxpanel
Then create a new session:
nano /usr/share/xsessions/fusion.desktop
paste these:
[Desktop Entry]
Encoding=UTF-8
# This is the name you'll see for the session in gdm
Name=Fusion
# This is the comment
Comment=Compiz Fusion Standalone
# The command
Exec=/usr/local/bin/start-fusion.sh
Type=Application
then create the start-fusion.sh:
nano /usr/local/bin/start-fusion.sh
We will need a window manager (compiz fusion), a window decorator (emerald) and a panel (lxpanel) to start, so add these to start-fusion.sh:
#!/bin/bash
compiz ccp &
emerald &
lxpanel
save and make the file executable:
chmod +x /usr/local/bin/start-fusion.sh
Now you can log in with the Fusion session on the startup. You can configure your keyboard shortcuts with ccsm (Compiz Config Settings Manager).
PS: Since I'm not using anything related with desktop I haven't bothered with that. But for desktop icons you can use idesk.
Offline
Wouldn't the following in ~/.xinitrc be easier? (assuming no display manager)
compiz ccp &
emerald &
exec lxpanel
Offline
I tried it (Peets way; I don't use a display manager), but there seems to be something wrong with my emerald.
It doesn't show window titles. I can't use the command emerald --replace. I can't switch themes(or I can but I can't see them ofcourse).
Does anyone have any tips on solving this problem?
Offline
Saphiro wrote:I can't use the command emerald --replace.
I guess just "emerald" would be enough because you're not replacing it with another decorator.
Gives this message :
emerald: Screen 0 on display ":0.0" already has a decoration manager; try using the --replace option to replace the current decoration manager.
Offline
emerald: Screen 0 on display ":0.0" already has a decoration manager; try using the --replace option to replace the current decoration manager.
Are you sure you're only using Compiz? Is there another window manager loading on startup?
Offline
try exec compiz --replace ccp & emerald --replace
Dont know the reason...but its the only way it works for me properly ....
Offline
The only few lines that aren't commented in ~/.xinitrc are
exec compiz --replace ccp &
exec emerald --replace &
exec lxpanel
I tried it without the exec before compiz and emerald too, doesn't seem to work
EDIT
I just found out that the terminal gives this output:
compiz (core) - Warn: No GLXFB Config found for depth 32
compiz (core) - Info: Couldn't bind redirected window 0x*some hex adress* to texture.
Maybe that is of help.
Last edited by Saphiro (2008-07-06 10:40:13)
Offline
try replacing:
exec compiz --replace ccp &
exec emerald --replace &
with exec fusion-icon &
it works for me
dovie andi se tovya sagain
Offline
Ah Thanks for the quick responses, but i just got it working adding these two lines to the Screen section in xorg.conf:
Option "AddARGBGLXVisuals" "True"
Option "DisableGLXRootClipping" "True"
Now my Emerald works. yay!
Offline
Guess what will happen when you have 2 exec lines ? The second one won't start until the first one finishes.
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
Guess what will happen when you have 2 exec lines ? The second one won't start until the first one finishes.
True. You should only put exec in front of the last item. This ensures that X will continue to run until that item finishes.
Offline
So this would work for say a new install with no other DE or WM installed?
How "involved" is the setup for lxpanel?
New PC needs Arch installed badly want to give this a shot
Offline
So this would work for say a new install with no other DE or WM installed?
How "involved" is the setup for lxpanel?
New PC needs Arch installed badly want to give this a shot
You shouldn't need any other WM/DE and it's not too involved to set up -- if you'd ever set up a minimal wm like openbox or one of the tilers then it should be a breeze. You do have to manually set up functionalities like dbus support, some means of launching applications, a panel/tray, some way to mount/unmount drives and so on, of course.
Last edited by fwojciec (2008-07-19 20:06:31)
Offline
lxpanel doesn't load here :s with
compiz ccp
emerald &
exec lxpanel & (it also doesn't work without the &)
Last edited by el mariachi (2008-07-19 21:01:14)
Offline
Something like this works for me:
start-fusion.sh
#!/bin/sh
# add more apps here if necessary
xfce4-panel&
fusion-icon
and this in ~/.xinitrc:
exec start-fusion.sh
It should also work with lxpanel instead of xfce4-panel.
Offline
Who is compiling this info and adding it to the Compiz wiki page? Hm?
Offline
Who is compiling this info and adding it to the Compiz wiki page? Hm?
I added some basic info: http://wiki.archlinux.org/index.php/Com … ndalone_WM
Offline
Misfit138 wrote:Who is compiling this info and adding it to the Compiz wiki page? Hm?
I added some basic info: http://wiki.archlinux.org/index.php/Com … ndalone_WM
Thank you, fwojciec!
Offline
I've been using this for a while and compiz-deskmenu is a nice right click menu for it, check it's forum post in the compiz forums about how to use it
Fight our cause here . http://freesyko.co.nr
Offline
I've been using this for a while and compiz-deskmenu is a nice right click menu for it, check it's forum post in the compiz forums about how to use it
Thanks! It's all looking more and more openbox-like
Last edited by fwojciec (2008-07-21 23:13:27)
Offline
Dream_Team wrote:I've been using this for a while and compiz-deskmenu is a nice right click menu for it, check it's forum post in the compiz forums about how to use it
Thanks! It's all looking more and more openbox-like
When you can middle click for something like the client-list-combined-menu in openbox, then you will have something
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
@moljac024: See the updated post above -- that's the best I can do There is a menu for switching viewports available as well. I just don't like that there are non-removable icons in both these menus...
Offline
Hmm, very nice! (Borat style)
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline