PDA

View Full Version : [SOLVED] Install ALL Compiz plugins?



steigerjb
November 7th, 2009, 09:57 PM
Is there a way I can install ALL the Compiz plugins (Main, extra, unsupported, experimental,...) all at once?

Though, I don't even know how to do one at a time.

I already did


sudo apt-get install compizconfig-settings-manager

course that's not nearly all the plugins.

Steigerjb wants ALL the eyecandy! :lolflag:

NuclearStr1der
November 7th, 2009, 10:00 PM
Take a look here:

https://launchpad.net/~compiz/+archive/ppa

That should have everything you need ;)
Just add it to your software sources, etc.

steigerjb
November 7th, 2009, 11:40 PM
Take a look here:

https://launchpad.net/~compiz/+archive/ppa

That should have everything you need ;)
Just add it to your software sources, etc.

what do I do?

oktapod
November 8th, 2009, 01:13 AM
System -> Preferences -> CompizConfig Settings Manager

or

type ccsm in terminal.

NuclearStr1der
November 8th, 2009, 10:16 AM
what do I do?

Go the link I gave you earlier.

Click on "Technical Details about this PPA",
and then click on "Read about installing"

That should help you - it's really not that hard to find.

MelDJ
November 8th, 2009, 10:45 AM
add the compiz repo from the site NuclearStr1der gave

then install this package: compiz-fusion-plugins-unsupported

steigerjb
November 8th, 2009, 08:52 PM
add the compiz repo from the site NuclearStr1der gave

then install this package: compiz-fusion-plugins-unsupported

That didn't get me all, only gave me a few more.

blazemore
November 9th, 2009, 07:49 AM
Right what if I've written a compiz plugin but have never released it?
Do you expect to be able to get that as well??

NuclearStr1der
November 9th, 2009, 02:01 PM
Yeah - now you have ALL of them...

A lot are included by default.

Tholley
November 9th, 2009, 02:10 PM
Check out these sites.

http://my.opera.com/ubuntunerd1/blog/how-to-install-compiz-fusion-in-ubuntu-hardy


http://forlong.blogage.de/entries/2007/8/29/How-to-set-up-Compiz-Fusion

These really helped me!

realzippy
November 9th, 2009, 02:32 PM
http://forum.compiz.org/showthread.php?p=68054

steigerjb
November 9th, 2009, 07:55 PM
Yeah - now you have ALL of them...

A lot are included by default.

Plugins I want are the following:

Aquarium
Screensaver
Stackswitch
Freewins
Freescale
Rubix cube
Snow globe
Shelf
Photowheel
CubeModel
Wiimote....

I believe that's all ):P How do I get those?


Right what if I've written a compiz plugin but have never released it?
Do you expect to be able to get that as well??

What's your plugin do? I might want it ;)

-------------------------------------------------------------------------

Everyone, I know how to get Compiz and set it up. That is not what I am looking for in this thread. I am looking to get those extra plugins listed up there.

blazemore
November 9th, 2009, 08:12 PM
What's your plugin do? I might want it ;)

I didn't really write a plugin, I was just saying you can't expect to get ALL of them, some of them will be in some random obscure branch.

realzippy
November 9th, 2009, 08:57 PM
Plugins I want are the following:

Aquarium
Screensaver
Stackswitch
Freewins
Freescale
Rubix cube
Snow globe
Shelf
Photowheel
CubeModel....

I believe that's all How do I get those?

As suggested,here:
http://forum.compiz.org/showthread.php?p=68054

It works in Karmic also.

steigerjb
November 11th, 2009, 01:22 AM
I believe that's all How do I get those?

As suggested,here:
http://forum.compiz.org/showthread.php?p=68054

It works in Karmic also.

I don't know if that will work cuz I tried the script from this guy: http://mathpages.blogspot.com/2008/06/tips-for-using-compiz-fusion-on-ubuntu.html and it didn't work

blazemore
November 11th, 2009, 07:47 AM
When you tried out the script, did you install all the required packages beforehand?

Locutus_of_Borg
November 11th, 2009, 08:29 AM
here are all of them:
http://gitweb.compiz-fusion.org/


install them by the usual compilation methods
./configure
make
sudo make install

steigerjb
November 11th, 2009, 06:26 PM
here are all of them:
http://gitweb.compiz-fusion.org/


install them by the usual compilation methods
./configure
make
sudo make install

can you do some examples please, I don't know how to compile

realzippy
November 11th, 2009, 10:03 PM
Install the packages required for compiling plugins:

sudo apt-get install compiz-fusion-bcop compiz-dev compizconfig-settings-manager build-essential libtool libglu1-mesa-dev libxss-dev libcairo2-dev libpango1.0-dev git-core


------------------------------------------------------
creating directory "compiz" in home folder:

mkdir -p ~/compiz/

example for screensaver plugin:

cd ~/compiz


git clone git://anongit.compiz-fusion.org/users/pafy/screensaver


cd ~/compiz/screensaver

Now compiling :


make clean

make

make install


Restart compiz and ccsm,new plugins can be found in ccsm

(http://forum.compiz.org/showthread.php?p=68054) ;-)

steigerjb
November 12th, 2009, 06:15 PM
Install the packages required for compiling plugins:
creating directory "compiz" in home folder:

mkdir -p ~/compiz/

what would be the codes to put the plugins in a compiz folder in my downloads folder?

realzippy
November 12th, 2009, 07:56 PM
mkdir -p ~/compiz/
is the same as:
mkdir -p /home/youruserbutdontknowyourusername/compiz/

So when your Downloadfolder is (as default in Karmic):
/home/youruserbutdontknowyourusername/Downloads/
same as
~/Downloads/
so to create a folder named compiz in Downloads:

mkdir -p ~/Downloads/compiz/

mind that if you do so cd ~/compiz has to be: cd ~/Downloads/compiz and cd ~/compiz/screensaver -you go tit!: cd ~/Downloads/compiz/screensaver


But why not using nautilus and create new folder by right click????????

steigerjb
November 19th, 2009, 10:46 PM
mkdir -p ~/compiz/
is the same as:
mkdir -p /home/youruserbutdontknowyourusername/compiz/

So when your Downloadfolder is (as default in Karmic):
/home/youruserbutdontknowyourusername/Downloads/
same as
~/Downloads/
so to create a folder named compiz in Downloads:

mkdir -p ~/Downloads/compiz/

mind that if you do so cd ~/compiz has to be: cd ~/Downloads/compiz and cd ~/compiz/screensaver -you go tit!: cd ~/Downloads/compiz/screensaver


But why not using nautilus and create new folder by right click????????

where did i go wrong:


joe@joe-laptop:~$
joe@joe-laptop:~$ mkdir -p ~/Downloads/compiz/
joe@joe-laptop:~$ cd ~/Downloads/compiz
joe@joe-laptop:~/Downloads/compiz$ git clone git://anongit.compiz-fusion.org/users/pafy/screensave
The program 'git' is currently not installed. You can install it by typing:
sudo apt-get install git-core
git: command not found
joe@joe-laptop:~/Downloads/compiz$ git clone git://anongit.compiz-fusion.org/users/pafy/screensaver
The program 'git' is currently not installed. You can install it by typing:
sudo apt-get install git-core
git: command not found
joe@joe-laptop:~/Downloads/compiz$ sudo apt-get install git-core
[sudo] password for joe:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
dvdrip-doc python-pexpect xulrunner-1.9.2 xulrunner-1.9.3
libevent-execflow-perl libnet-ssleay-perl librsvg2-2.18-cil libintl-perl
libgdata1.4-cil transcode-utils transcode-doc transfig subtitleripper
libxine1-ffmpeg libevent-rpc-perl ogmtools gtk2-ex-formfactory-perl
transcode fping netpbm libwnck2.20-cil anyevent-perl sox gocr libevent-perl
libnetpbm10 xine-ui libio-socket-ssl-perl libjpeg-progs
libgnomedesktop2.20-cil libnet-libidn-perl
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
libdigest-sha1-perl liberror-perl
Suggested packages:
git-doc git-arch git-cvs git-svn git-email git-daemon-run git-gui gitk
gitweb
The following NEW packages will be installed:
git-core libdigest-sha1-perl liberror-perl
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 7,175kB of archives.
After this operation, 14.8MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://mirror.cc.columbia.edu karmic/main liberror-perl 0.17-1 [23.8kB]
Get:2 http://mirror.cc.columbia.edu karmic/main libdigest-sha1-perl 2.12-1 [26.5kB]
Get:3 http://mirror.cc.columbia.edu karmic/main git-core 1:1.6.3.3-2 [7,125kB]
Fetched 7,175kB in 45s (157kB/s)
Selecting previously deselected package liberror-perl.
(Reading database ... 270696 files and directories currently installed.)
Unpacking liberror-perl (from .../liberror-perl_0.17-1_all.deb) ...
Selecting previously deselected package libdigest-sha1-perl.
Unpacking libdigest-sha1-perl (from .../libdigest-sha1-perl_2.12-1_i386.deb) ...
Selecting previously deselected package git-core.
Unpacking git-core (from .../git-core_1%3a1.6.3.3-2_i386.deb) ...
Processing triggers for man-db ...
Setting up liberror-perl (0.17-1) ...
Setting up libdigest-sha1-perl (2.12-1) ...
Setting up git-core (1:1.6.3.3-2) ...
joe@joe-laptop:~/Downloads/compiz$ git clone git://anongit.compiz-fusion.org/users/pafy/screensaver
Initialized empty Git repository in /home/joe/Downloads/compiz/screensaver/.git/
remote: Counting objects: 176, done.
00% (172/172), done.
remote: Total 176 (delta 102), reused 0 (delta 0)
Receiving objects: 100% (176/176), 44.76 KiB | 17 KiB/s, done.
Resolving deltas: 100% (102/102), done.
joe@joe-laptop:~/Downloads/compiz$ cd ~/compiz/screensaver
bash: cd: /home/joe/compiz/screensaver: No such file or directory
joe@joe-laptop:~/Downloads/compiz$ cd ~/Downloads/compiz/screensaver
joe@joe-laptop:~/Downloads/compiz/screensaver$ make clean
Makefile:48: *** [ERROR] Compiz not installed. Stop.
joe@joe-laptop:~/Downloads/compiz/screensaver$ make
Makefile:48: *** [ERROR] Compiz not installed. Stop.
joe@joe-laptop:~/Downloads/compiz/screensaver$ make install
Makefile:48: *** [ERROR] Compiz not installed. Stop.
joe@joe-laptop:~/Downloads/compiz/screensaver$

steigerjb
November 25th, 2009, 09:52 PM
Install the packages required for compiling plugins:

sudo apt-get install compiz-fusion-bcop compiz-dev compizconfig-settings-manager build-essential libtool libglu1-mesa-dev libxss-dev libcairo2-dev libpango1.0-dev git-core


------------------------------------------------------
creating directory "compiz" in home folder:

mkdir -p ~/compiz/

example for screensaver plugin:

cd ~/compiz


git clone git://anongit.compiz-fusion.org/users/pafy/screensaver


cd ~/compiz/screensaver

Now compiling :


make clean

make

make install


Restart compiz and ccsm,new plugins can be found in ccsm

(http://forum.compiz.org/showthread.php?p=68054) ;-)

Can you redo the codes again???...put them in the downloads folder...i tried you post (#21) but it didn't work.

realzippy
December 10th, 2009, 10:57 PM
Have you run

sudo apt-get install compiz-fusion-bcop compiz-dev compizconfig-settings-manager build-essential libtool libglu1-mesa-dev libxss-dev libcairo2-dev libpango1.0-dev git-core


before?

steigerjb
December 11th, 2009, 06:08 PM
Have you run

sudo apt-get install compiz-fusion-bcop compiz-dev compizconfig-settings-manager build-essential libtool libglu1-mesa-dev libxss-dev libcairo2-dev libpango1.0-dev git-core


before?


just did. what do I do next?

blazemore
December 13th, 2009, 02:42 PM
Download and run this script
http://www.box.net/shared/sbq91nzy8o

steigerjb
December 16th, 2009, 07:49 PM
Download and run this script
http://www.box.net/shared/sbq91nzy8o

I would still like the following plugins:

Aquarium
Stackswitch
Rubix cube
Wiimote (not sure offical name)
Freescale

Other: We all ready know Compiz can do the snap feature like Windows 7! (psh Win7, Ubuntu had it first!) My question is, can Ubuntu do the other 2 features too?: http://www.youtube.com/watch?v=xO_7sbFEJrE (Peek & shake)

locote
December 27th, 2009, 08:53 AM
Take a look here:

https://launchpad.net/~compiz/+archive/ppa (https://launchpad.net/%7Ecompiz/+archive/ppa)

That should have everything you need ;)
Just add it to your software sources, etc.


Thanks this helped

steigerjb
December 31st, 2009, 07:12 PM
I would still like the following plugins:

Aquarium
Stackswitch
Rubix cube
Wiimote (not sure offical name)
Freescale
Wizard

Other: We all ready know Compiz can do the snap feature like Windows 7! (psh Win7, Ubuntu had it first!) My question is, can Ubuntu do the other 2 features too?: http://www.youtube.com/watch?v=xO_7sbFEJrE (Peek & shake)

bump

steigerjb
January 20th, 2010, 06:24 PM
Is there a way I can install ALL the Compiz plugins (Main, extra, unsupported, experimental,...) all at once?

Though, I don't even know how to do one at a time.

I already did


sudo apt-get install compizconfig-settings-manager

course that's not nearly all the plugins.

Steigerjb wants ALL the eyecandy! :lolflag:

bravo gotbletu!:
http://www.youtube.com/watch?v=b616WSM-uYw

thanks a bunch! way easy way! party time with Compiz :guitar:

Throbbing Gristle
January 24th, 2010, 09:14 AM
bravo gotbletu!:
http://www.youtube.com/watch?v=b616WSM-uYw

thanks a bunch! way easy way! party time with Compiz :guitar:
Sweet!!!!!! Been looking for these I don't really no all the cool places to look great :D

PenguinInside
January 24th, 2010, 01:46 PM
Wait, not all the plugins are compatible with each other, right?

Throbbing Gristle
January 25th, 2010, 04:03 AM
There are some limitations. Cannot run everything at once. Compiz usually give a prompt saying to disable something that I have seen.

pocketman
February 18th, 2011, 12:12 AM
Sorry to dredge up such an old post, but I was just looking for the same thing, and this post popped up in my search.

If you're on Ubuntu 10.10, it's even easier. Just go to synaptic (system -> administrtion -> synaptic pkg mgr), search for compiz, click on 'compiz-fusion-plugins-extra', and hit apply.

It's that easy, now you have all the plugins. :)

beew
February 18th, 2011, 01:14 AM
Sorry to dredge up such an old post, but I was just looking for the same thing, and this post popped up in my search.

If you're on Ubuntu 10.10, it's even easier. Just go to synaptic (system -> administrtion -> synaptic pkg mgr), search for compiz, click on 'compiz-fusion-plugins-extra', and hit apply.

It's that easy, now you have all the plugins. :)

Don't think so, maybe compiz-fusion-plugins-unsupported but that would remove compiz-fusion-plugins-extra. The extra package doesn't have, for example, the screensaver plugin and cube Atlantis.