I installed and got compiz fusion working finally but need to know how to make it so when I boot Kubuntu it loads automatically for me. Kinda annoying having to load it manually everytime.
Announcement
Collapse
No announcement yet.
Auto start Compiz Fusion?
Collapse
This topic is closed.
X
X
-
Re: Auto start Compiz Fusion?
Code:echo '#!/bin/bash' > ~/.kde/Autostart/compiz.sh echo 'compiz --replace || kwin --replace' >> ~/.kde/Autostart/compiz.sh chmod a+x ~/.kde/Autostart/compiz.sh
Explanation: The contents of ~/.kde/Autostart are executed when you log into KDE. With this little script, "compiz --replace" is executed, causing Compiz to manage your windows. The "|| kwin --replace" causes it to fall back to kwin if compiz exits with an error, meaning you shouldn't lose window decorations.For external use only.
- Top
- Bottom
Comment