Compiz & Emerald is not compatible with Gnome 3 or Cinnamon.
For those who like using Emerald with Compiz, here is a guide on how to install Emerald.
1st we need the libraries
- Code: Select all
apt install intltool build-essential libxrender-dev libgtk2.0-dev libwnck-dev libdecoration0-dev
Then we need to get the code from git and compile it
- Code: Select all
cd ~
- Code: Select all
git clone git://anongit.compiz.org/fusion/decorators/emerald
- Code: Select all
cd emerald
- Code: Select all
git checkout -b compiz++ origin/compiz++
- Code: Select all
./autogen.sh
- Code: Select all
make
- Code: Select all
sudo make install
Mint, by default, does not look here for libraries. If we tried executing Emerald now, with
- Code: Select all
emerald --replace
we’d get the following error.
- Code: Select all
emerald: error while loading shared libraries: libemeraldengine.so.0: cannot open shared object file: No such file or directory
So we have to link the library
- Code: Select all
sudo echo "/usr/local/lib" > /etc/ld.so.conf.d/emerald.conf
If you get a "permission denied" error from the last command try logging in as superuser
- Code: Select all
su
Then run the command again without sudo
- Code: Select all
echo "/usr/local/lib" > /etc/ld.so.conf.d/emerald.conf
Then update
- Code: Select all
sudo ldconfig
I would then reboot so fusion-icon shows the Emerald Theme Manager so you can change themes. Or use the following command to start using emerald.
- Code: Select all
emerald --replace










