53

For example, can I keep Ambiance as main theme but assign elementary theme to elementary's app?

Anwar
  • 77,855
Rossi
  • 561

5 Answers5

46

You can use the GTK environment variable GTK_THEME=elementary to launch an app with the elementary theme. For example, running GTK_THEME=elementary pantheon-files will launch the elementary Files app using the elementary GTK theme.

To get this to apply every time you launch a specific app, your best option is likely to create a custom .desktop file (launcher).

Create a custom .desktop file

  1. Open your file browser
  2. Navigate to /usr/share/applications/
  3. Copy the launcher (highlight and Ctrl+C) for the app you want to launch with the elementary theme
  4. Navigate to ~/.local/share/applications/ and paste the launcher (Ctrl+V)
  5. Right-click and open the launcher with a text editor
  6. Modify the line starting with Exec= to include Exec=env GTK_THEME=elementary and then the previous existing contents of the line. (So Exec=pantheon-files would become Exec=env GTK_THEME=elementary pantheon-files)
  7. Save and close the file

The next time you launch the app from Unity (or your app launcher of choice) it will use the elementary theme.

Bonus: make it work when using command line

You may also want the app to launch with the elementary theme when launching it from the command line. To do so:

  1. Open your Terminal app
  2. Type alias pantheon-files="GTK_THEME=elementary pantheon-files" (replacing pantheon-files with the desired app)
  3. Press Enter

Caveats:

  1. This will not change your window manager's theme to the elementary theme.
  2. This (by design) will only apply to your account, not root or anyone else on the machine.
  3. The theme names are cAsE-sEnsItiVe and should be matched with the theme folder name.

Sources:

  1. I'm an elementary contributor ;)
  2. GTK+ 3 Reference Manual: Running GTK+ Applications
  3. Set variable in .desktop file
12

The question is still valid and I found a way:

  • create any folder path/to/MY_FOLDER

  • create a /share/themes/ folder inside it (that is path/to/MY_FOLDER/share/themes).

  • put any GTK3 theme inside the latter

  • rename the theme to the name of the CURRENTLY ACTIVE THEME.

    At last, this command will make an app use the renamed theme instead of the currently active one:

GTK_DATA_PREFIX=path/to/MY_FOLDER YOUR_APPLICATON

(The path after GTK_DATA_PREFIX= has to be that (and only that) to the folder that contains /share/themes/RENAMED_THEME. That's why it's NOT path/to/MY_FOLDER/share/themes/RENAMED_THEME, but just path/to/MY_FOLDER.)

To have that inside a launcher, replace accordingly:

Exec=sh -c 'GTK_DATA_PREFIX=path/to/MY_FOLDER YOUR_APPLICATION'
Tsu Jan
  • 129
8

Yes, the simple way is to point the application at the required path where your rc file lives, in the command that runs your application:

GTK2_RC_FILES=/usr/share/themes/Redmond/gtk-2.0/gtkrc inkscape

This on 12.04 for inkscape (which is still Gnome2 btw) produces this:

inkscape window with windows theme

See more information about Gtk2 theme running here.

8

Its certainly possible, I don't have much of themeing experience, but when you navigate to /usr/share/themes/*Theme Name*/gtk-3.0/apps/ directory, you'll find .css files, named with apps they target to theme, so yes you can create app-specific Themes.

Note that the way you mentioned to theme your apps may require some work to be done (like having both Ambiance and Elementary work simultaneously, since every theme has a base file on top of which app specific styling is done, (a file gtkrc in Gtk 2.0 while, a file gtk.css in case of Gtk3.0).

And this base theme file contains styling rules that specifically target the given theme, hence you cannot create Elementary like look and feel from Ambiance's base theme file without making some heavy changes, and even if you do, you'll loose Ambiance look itself.

Also, in GNOME, it is possible to have only single theme applied at a time, For Example, if you have used Appearance window in Ubuntu 12.04, you know can can select any single theme from the dropdown, in case you have used gnome-tweak-tool, than you can set different themes, for Gtk, Window frames, and icons, but still, it doesn't allow to target specific applications to theme, so as I said earlier, you can set totally different themes for different applications if you cleverly work with base theme file, as of now, no third party applications can do it by itself.

One way you can do it by yourself is that, let the base theme file (gtk.css) have only essential rules which are neutral to any theme, being dark or light. And have the actual theme design written in app-specific files that reside in above mentioned directory, i.e. for styling Nautilus, you can write all required properties in nautilus.css file. Same with every app you wish to target. Obviously, doing such requires some decent Gtk themeing experience.

You may refer this for creating your own theme using template, Also there's a decent documentation on Gtk+ themeing.

Kushal
  • 2,390
2

Yes you can, actually I googled and got some answers:

  1. Look for the exact executable for the program you want to change the theme. For example, if you want it for ooffice then type which ooffice in the terminal.
  2. Look for the bin folder where all applications put their binary executables. Type echo $PATH in the terminal and you will ge the path. I recommend you to create a bin folder in your home directory by typing mkdir ~/bin
  3. Type gedit ~/.bashrc to open your bash rc file.
  4. Go to the bottom of this file and add this line export PATH=~/bin:${PATH}

Now we will create a script which will execute your program with custom theme:

  1. Create application's script file by typing: gedit ~/bin/ooffice
  2. Type these lines in the opened file:

    #!/bin/bash
    env GTK2_RC_FILES=/usr/share/themes/SlicknessX/gtk-2.0/gtkrc /usr/bin/ooffice "$@"
    
  3. Change the mode of the file to executable by typing: chmod +x ~/bin/ooffice.

Hope this helps, you have to remember only one thing, the format of the script as shown below:

#!/bin/bash
env GTK2_RC_FILES=PATH_TO_GTKRC PATH_TO_EXECUTABLE "$@"
d a i s y
  • 5,551
Ravi Raj
  • 147