I have been using the default Ubuntu 11.10 with Unity for some time now and decided to start customizing it.
I have already been able to make some changes with the gnome-tweak-tool. However, there are many themes that I get from gnome-look.org that don't appear in the gnome-tweak-tool even after putting them in the /usr/share/themes folder.
Any idea why this is happening? Thanks.
73 Answers
How to install themes in Ubuntu:
When you download a theme for Ubuntu this come compressed into a .tar.gz file almost always. What you have to do is:
- Run the terminal Ctrl+Alt+T
- Enter
cd ~ && mkdir .themes
This command will create a.themesfolder in your personal folder. The dot is necessary - Enter
cp files_path ~/.themes
Replacefiles_pathwith the directory where are your zipped files. This command copy the compressed files into this folder. - Enter
cd ~/.themes && tar xvzf PACKAGENAME.tar.gz
ReplacePACKAGENAMEwith the name of the file. This command will unzip the theme file into the new folder. - Enter
gnome-tweak-tool
Finally will appears the tweak window (similar as the following) and you'll see the themes that you've previously copy in the themes folder and will be able to choice them!
For future themes, omit the second step
I installed a few themes from gnome-look.org
The site uses a special URL scheme. The URL handler comes in a package named ocs-url. Here are the instructions for installing the URL handler on linux-apps.com.
However, the installation method described on this site has an issue: it marks the dependencies as manually installed.
Therefore I recommend the following method instead.
My method will ensure that, when you uninstall ocs-url, its dependencies will be automatically uninstalled as well.
First download the ocs-url Debian package, then (filename and directory name might differ):
cd ~/Downloads
sudo dpkg -i ocs-url_3.1.0-0ubuntu1_amd64.deb
sudo apt-get install --fix-brokenOnce this is done, all you have to do is click on install links on gnome-look.org and them click "OK" and the themes will be installed in ~/.themes.
Restart the Tweaks tool and your new themes should be available.
Tested on Debian.
2I had the same problem when placing themes in /usr/share/themes. You need to make sure the permissions are set correctly.
Right click on the folder of your theme and select properties, go to the permissions tab and set it like this:
Now go back to gnome tweak tool and your theme should be there. Alternatively, you could create ~/.theme and put your theme in there.