Skip to main content

Install theme on fedora 15


############################
#      HOW TO INSTALL      #
############################

To use this theme you'll need the LATEST stable versions of the following software:

- Gnome 2.32 or Gnome 3.
- The Unico GTK3 engine. (Only needed if you are using GTK3 applications. Google it or search for it on launchpad.net.)
- The Murrine GTK2 engine 0.98.1.1 or later. (Package name varies between distributions. This engine should be installed by default in Ubuntu.)
- The Pixbuf GTK2 engine (Package name varies between distributions. This engine should be installed by default in Ubuntu. In arch, fedora and some other non-debian distributions it's included in the gtk2-engines or gtk-engines package. In Debian based distros it's called gtk2-engines-pixbuf.)
- Nautilus-Elementary (Not needed. But it's recommended if you're using Gnome 2.32.)
- gnome-tweak-tool (If you're using Gnome 3.)

## INSTALLING THE GTK2 THEME ##

Unzip the included folder(s) to 1 of the following locations:
/usr/share/themes
/home/your username/.themes

Go to System -> Preferences -> Appearance and click on the Customize button.
Select the theme(s) from the lists there.

Note: The /.themes folder is only for your user. If you for example open Synaptic or any other administrative application it will not be styled.

## INSTALLING THE GTK3 & GNOME-SHELL THEME ##

Unzip the included folder(s) to 1 of the following locations:
/usr/share/themes
/home/your username/.themes

Note: The /.themes folder is only for your user. If you for example use an application as root it will not be styled.

Go to System -> Accessories -> Advanced Settings or search for gnome-tweak-tool.
In this app (gnome-tweak-tool) you can select the GTK theme and metacity theme.

To use the GNOME-Shell theme you need to install gnome-shell-extensions-common and gnome-shell-extension-user-theme.
These packages may or may not be available in your distribution's repository.

If changes doesn't take place after selecting the themes you can try to log out and back in. If you're in Gnome-shell you can just press ALT+F2 and type r to restart the shell.

## USING A TRANSPARENT PANEL BACKGROUND ##

1. Right-click on your panel and select properties.
2. Set the height to 32px and the position to bottom.
3. Click on the Background tab and select to use a custom background image.
4. Select the panelbg.png included the archive. (panelbg.png)
If the panel didn't become transparent you're using an old version of Gnome, or you are not using the Zukitwo GTK theme.

## USING A CUSTOM PANEL BACKGROUND IN GNOME 3 FALLBACK MODE (RECOMMENDED) ##

1. ALT + Right-click on your panel and select properties.
2. Click on the Background tab and select to use a custom background image.
3. Select the panelbg.png included the archive. (panelbg.png)

## NOT USING NAUTILUS ELEMENTARY IN GNOME 2.32? ##
(Nautilus is the default file-manager in Gnome. There's a mod for it that makes it look more compact. It's called Nautilus Elementary.)

1. Locate the 'gtkrc' file inside the Zukitwo theme you're using. Open it in a text editor.
2. At the bottom of the file locate nautilus-e.rc and replace it with nautilus.rc.

Comments

Popular posts from this blog

Creating Custom Events in C#

First of all, to read and understand this article you should be familiar with these concepts of C# language: Inheritance Events Delegates Just to remind them very quickly: Inheritance is a feature of OOP. You can create a class and then you can create another class which has the same properties and methods of the class it is inheriting from. This could be useful for example when you need to create a class for objects like cars. You create a basic Car class and then you create some classes that inherits from Car, and in their body you add methods and/or properties. The C# syntax for inheriting a class is this: class BaseClass { /*body of the BaseClass here */ } class DerivedClass : BaseClass { /*body of the DerivedClass here */ } Events and delegates are two concepts that very often work together. When something happens on a windows form (like a click, dblclick, changin some text, selecting an item in a combobox, moving mouse, pressing a key and so on) an event is raise...

How to use Application Bar in Windows Phone 7 Application ?

      If you are working with Windows Phone 7, the first thing that you should have noticed is the very own Application bar. Application Bar is present in most of the applications that you use in your Windows Phone 7. This is basically a standard Toolbar with a menu associated with it which allows you to enumerate the commonly used commands in a standard location. While creating your application, Microsoft strongly recommends you to add an application bar, to ensure the user have common behaviour for every application. You can think Application bar similar to TaskBar of windows. Components of Application Bar An application Bar is made up with two components: 1. ApplicationBar Buttons 2. ApplicationBar Menu The applicationbar buttons are always visible for an application which is used to list only the items that needed to be frequently used while dealing with the application. Lets say you create a Text processing application, you can list the File->Ope...

WP7 Sample–Create a JPG screenshot of Bing maps control

WP7 Sample–Create a JPG screenshot of Bing maps control Today I saw a colleague ask an interesting question, how do you create a screenshot of a map that can be used in a list as a thumbnail? so I did some digging and came up with this sample that can be downloaded from the link below. http://cid-c6b45be43711d8b8.skydrive.live.com/self.aspx/Code%20Samples/wp7Sample.ScreenshotOfMap.zip In summary for those who don’t want to download the sample app, most of the work is done inside of the “Take picture” button, here is the source: // Store the size of the map control int Width = (int)mapTest.RenderSize.Width; int Height = (int)mapTest.RenderSize.Height; // Write the map control to a WriteableBitmap WriteableBitmap screenshot = new WriteableBitmap(mapTest, new TranslateTransform()); using (MemoryStream ms = new MemoryStream()) { // Save it to a memory stream screenshot.SaveJpeg(ms, Width, Height, 0, 100); // Take saved memory stream and put it back into an BitmapImage BitmapImage i...