How to install themes with GNOME tweak tool?
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.
Solution 1:
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.themes
folder in your personal folder. The dot is necessary - Enter
cp files_path ~/.themes
Replacefiles_path
with the directory where are your zipped files. This command copy the compressed files into this folder. - Enter
cd ~/.themes && tar xvzf PACKAGENAME.tar.gz
ReplacePACKAGENAME
with 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
Solution 2:
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-broken
Once 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.