fmII
Fri, May 16th home | browse | articles | contact | chat | submit | faq | newsletter | about | stats | scoop 22:58 PDT
in
Section
login «
register «
recover password «
[Article] add comment [Article]

 How to Create and Use Themes
 by jeff covey, in Themes - Sat, May 25th 2002 00:00 PDT

Since we started hosting themes, we've had many people email us or pop on IRC and ask what they're supposed to do with groovytheme-0.16.tar.gz. In this article, I'll offer instructions for all the window managers we cover.


Copyright notice: All reader-contributed material on freshmeat.net is the property and responsibility of its author; for reprint rights, please contact the author directly.

How to Create Themes

I originally intended to give instructions for creating themes for each window manager, as I've done below for using themes. When I looked through the documentation for each window manager, I decided against doing it. In some cases, the theme files have a large number of configuration items, and it would be easier for you to refer to the window manager's own most recent documentation than for me to keep this article up-to-date with the changes. In others, tools for creating themes have become available, and you would hate me if you followed guidelines here to write a 300-line file, only to find out you could have just clicked a button.

If you want to get started creating themes for your favorite window manager, check the documentation in its tarball or on its Web site. If you can't find instructions, try downloading a theme you like and editing its files until you come up with your own theme. Just don't expect us to include it in our database if all you've done is change an existing theme's background from color to black-and-white. ;^)

How to Use Themes

Preliminaries

Installing a theme almost always involves unpacking a tarball somewhere. If you're not familiar with tar, the two incantations you should remember are "tar tzvf [filename]" and "tar xzvf [filename]". The first version only tests ("t") what would happen if you actually unpacked the tarball. The second really extracts ("x") the contents.

You should run a test first because theme authors aren't always careful about how they pack their files. If you see this:

$ tar tzvf bob-0.1.tar.gz
-rw-r--r-- root/root       368 2000-02-25 20:14:08 icondefs.cfg
-rw-r--r-- root/root        68 1999-12-21 20:01:57 sound.cfg
-rw-r--r-- root/root        74 1999-12-21 20:01:57 tooltips.cfg
-rw-r--r-- root/root       962 2000-05-23 10:17:38 windowmatches.cfg

, watch out; it's going to spit all those files into the current directory. If your window manager expects each theme to be in its own directory, you'll need to create a directory for it first. For example, if this were an IceWM theme, you would want to do this:

$ mkdir ~/.icewm/themes/bob/
$ mv bob-0.1.tar.gz ~/.icewm/themes/bob/
$ cd ~/.icewm/themes/bob/
$ tar xzvf bob-0.1.tar.gz

(and rm bob-0.1.tar.gz if you know you don't want it anymore).

If instead you see this:

$ tar tzvf bob-0.1.tar.gz
-rw-r--r-- root/root       368 2000-02-25 20:14:08 bob/icondefs.cfg
-rw-r--r-- root/root        68 1999-12-21 20:01:57 bob/sound.cfg
-rw-r--r-- root/root        74 1999-12-21 20:01:57 bob/tooltips.cfg
-rw-r--r-- root/root       962 2000-05-23 10:17:38 bob/windowmatches.cfg

, you don't need to worry; the bob/ directory will be created when the tarball is unpacked. In this case, you can just do this:

$ mv bob-0.1.tar.gz ~/.icewm/themes/
$ cd ~/.icewm/themes/
$ tar xzvf bob-0.1.tar.gz

Where to unpack the tarball (or even whether you need to unpack it at all) depends on the window manager.

Instructions

Here are the specific instructions for each window manager:

Afterstep

Afterstep themes should be installed in ~/GNUstep/Library/AfterStep/themes/[themename]/. After a theme has been added, update Afterstep's theme menu by clicking on "Start --> Desktop --> Update startmenu", then select the theme from the menu with "Start --> Desktop --> Theme --> [themename]".

Blackbox

Blackbox themes (known as "styles") are problematic due to lack of standardization in earlier versions. Where you put your style files depends on how you configured Blackbox when you installed it or how your distribution's packager configured it. The default location is now ~/.blackbox/, but theme authors may assume you're keeping your styles in ~/.blackbox/, ~/blackbox/, /usr/share/blackbox/, or any random place that they themselves keep their files on their own systems.

The problem with this can be seen in the first Blackbox style I downloaded. It contained this line to set the background:

rootCommand: Esetroot /home/glitch/blackbox/gits/gits.jpg

That's all well and good, except that:

  1. I don't have Esetroot installed.
  2. I don't have a /home/glitch/ directory on my system, let alone anything in it.
  3. The tarball unpacked gits.jpg as Background/gits.jpg, so I have no idea how it was supposed to work even on the author's own system.

Unfortunately, you're going to have to tinker a bit to get Blackbox styles to work. Luckily, there are only two files in each Blackbox style tarball, the background image and the style file. Once you've determined where your Blackbox installation expects to find style files (on Debian, ~/.blackbox/styles/ will work for personal use and /usr/share/blackbox/styles/ for system-wide use), take these three steps:

  1. Manually move the background to where you keep your Blackbox backgrounds.
  2. Manually move the style file to where you keep your Blackbox styles.
  3. Look at the style file.
    1. Make sure the rootCommand line uses an application you actually have installed to set the background image.
    2. Make sure it points to where the background image actually is.
    3. If you have font problems, make sure the *Font line references a font that's installed on your system.

[Insert moral about standardization here.]

Enlightenment

Enlightenment themes should be installed in ~/.enlightenment/themes/[themename]/. After you've installed a new one, just restart Enlightenment and select it on the Themes menu.

Fluxbox

Fluxbox themes are almost identical to Blackbox themes, so you can use the same guidelines for both. The difference is that Fluxbox themes contain a superset of the types of information in Blackbox themes, including instructions for handling Fluxbox tabs.

Blackbox themes can be used by Fluxbox. If there isn't any format for the tab in the theme, the tab will have the same theme as the titlebar.

FVWM

FVWM themes are handled by the tools in the FVWM Themes project. fvwm-themes-config unpacks theme tarballs and checks for theme conflicts. It installs them in ~/.fvwm/themes/ for personal use or system-wide in /usr/share/fvwm/themes/.

Installation is as simple as:

fvwm-themes-config --install ft-example-theme-0.6.x.tar.gz

or:

fvwm-themes-config --site --install ft-example-theme-0.6.x.tar.gz

GTK

There are two ways to install GTK themes.

If you use GNOME, you can manage themes with the GNOME control center. Launch it with "gnomecc &", then navigate the menus to "Desktop --> Theme selector". Click on "Install new theme..." and point it toward the tarball. There's no need to unpack it.

If you don't use GNOME (or don't want to bother with gnomecc), you can use Gtk Theme Switch, which can switch themes from the commandline or sit on the GNOME Panel for quick access.

IceWM

IceWM themes should be installed in ~/.icewm/themes/[themename]/. After you've installed a new one, just restart IceWM and select it on the Themes menu.

KDE

The tarballs of themes for KDE 2.x and later should contain a file with a .ktheme extension (which is itself a gzipped tarball). To install the theme, open the KDE Control Center and navigate to "Look & Feel --> Theme Manager", click on "Add...", and point the dialog to the .ktheme file.

Metacity

Metacity themes should be installed in ~/.themes/[themename].

If you are using GNOME 2.0.x, the only way to change themes is by changing the /apps/metacity/general/theme gconf key with gconf-editor or gconftool-2 to the name of the theme you want to use. For example:

gconftool-2 --type=string --set ~/.themes/[themename] [themename]

If you are using GNOME 2.1.x or Red Hat 8.0, Metacity themes can be changed with the theme manager by selecting Applications --> Desktop Properties --> Theme.

Sawfish

Sawfish themes should be installed in ~/.sawfish/themes/[themename]/. A distinguishing characteristic of Sawfish is that it can apply different themes to different windows, so there are two ways to use a theme after you've installed it. To apply it to one window, right-click the window's titlebar and select the theme from the "Frame style" menu. To apply it to all windows, select "Customize --> Appearance" from the root window menu, and select the theme in the "Default frame style" dropdown box.

Window Maker

Window Maker themes should be unpacked in ~/GNUstep/Library/WindowMaker/Themes/, and should create [themename].themed directories for themselves. (Thanks to Erik Fredricks for the update on this.)

After a theme has been installed, you can select it on the Themes menu or type setstyle [themefile].

[Update: we now have instructions on converting old Window Maker themes here.]

XFCE

XFCE themes are managed through the xfskin program. After you've downloaded a theme, type "xfskin &", navigate to the "file --> add" menu item, point the file selector to the tarball, and click "install". xfskin can also be used to create and delete themes.

Updates

As work on window managers progresses, these instructions will become out-of-date. If you see something here that no longer applies, please let us know, and we'll make the appropriate changes. Thanks for your help.

[Comments are disabled]

 Referenced categories

Topic :: Desktop Environment :: Gnome :: GTK 1.x Themes
Topic :: Desktop Environment :: Gnome :: GTK 2.x Themes
Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes KDE 1.x
Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes KDE 2.x
Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes KDE 3.x
Topic :: Desktop Environment :: Theme
Topic :: Desktop Environment :: Window Managers :: Afterstep :: Themes
Topic :: Desktop Environment :: Window Managers :: Blackbox :: Themes pre-0.70
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR15
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR16
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR17
Topic :: Desktop Environment :: Window Managers :: Fluxbox :: Themes
Topic :: Desktop Environment :: Window Managers :: FVWM :: Themes
Topic :: Desktop Environment :: Window Managers :: IceWM :: Themes
Topic :: Desktop Environment :: Window Managers :: MetaCity :: Themes
Topic :: Desktop Environment :: Window Managers :: Sawfish :: Themes 0.30
Topic :: Desktop Environment :: Window Managers :: Sawfish :: Themes pre-0.30
Topic :: Desktop Environment :: Window Managers :: Window Maker :: Themes
Topic :: Desktop Environment :: Window Managers :: XFCE

 Referenced projects

AfterStep - A Window manager for X based on the NeXT look and feel.
Blackbox - A window manager for X11 written in C++.
Enlightenment - A fast, flexible, and very extensible Window Manager.
Fluxbox - A lightweight and highly-configurable window manager with pwm-like tabs.
FVWM - The classic highly-configurable virtual window manager.
FVWM Themes - The official FVWM Themes framework.
Gtk Theme Switch - A GTK theme-switching utility.
IceWM - A Window Manager designed for speed, usability, and consistency.
KDE - A powerful graphical desktop environment for Unix workstations.
sawfish - An extensible window manager.
Window Maker - An X11 window manager with a NEXTSTEP look and feel.
xfce - An easy-to-use and easy-to-configure environment for X11.

 Comments

[»] applets
by Chuck - Jan 21st 2008 08:46:22

I'm running on Enlightenment. I followed the instructions pretty well until the part that says in the instructions, "themes menu", ???? I have no themes menu anywhere. Do I have to create it? I want a theme of style like this roommate website. And also, where do I install the epplets? (From that I do have a menu).

[reply] [top]


[»] Wow
by Demi - Jan 1st 2006 23:11:54

Thanks a million! I never know it is that easy!

--
Keylogger killed my marriage, but saved my life.

[reply] [top]


[»] Err. Um....
by KRi!dler - Jul 1st 2005 16:16:58

Hi, does any one know where the theme manager is in the KDE that ships with Mandrake 10.0?

I've checked "System>Configuration>Configure your desktop" and "System>Configuration>KDE>Look'n'feel>..." but no Theme Manager.

It also doesn't seem to have a "KDM Theme Manager" either.

So far, I've had to manually place the files in their relevant folders, and hope that it'l work...

Anybody got any ideas/suggestions/help?

Regards

--
be good, or at least be good at it... ----- Pls Note: Any typng errirz are du to te catz, wE figurd out meow to use de KEybbord, de Mouse is deadd!

[reply] [top]


[»] Good Read
by sid007 - Dec 4th 2004 11:48:01

Excellent Read. Enjoyed your article :D

--
FavWebLinks Affordable Web Hosting Free Web Templates

[reply] [top]


[»] themes menu????
by Jefferson Rincón - Jul 13th 2004 18:35:31

I'm running on Enlightenment. I followed the instructions pretty well until the part that says in the instructions, "themes menu", ???? I have no themes menu anywhere. Do I have to create it? And also, where do I install the epplets? (From that I do have a menu).
I was on KDE before and I'm getting along with Enlightenment, so, excuses for the bothering, haha.
Thanks.

[reply] [top]


    [»] Re: themes menu????
    by modbot - Dec 8th 2004 10:26:53

    I'm not fully sure however another great application of themes is at eYell and iFault using default and custom made postNuke Themes

    --
    eYell.com :: Where the fun never stops Web Hosting Reviews

    [reply] [top]


[»] A better alternative to Gtk Theme Switch
by Aristotle Pagaltzis - Apr 10th 2004 20:11:34

Anyone who is interested in that tool may want to consider my Gtk+ 2.0 Change Theme instead. It was born from my dissatisfaction with Theme Switch.

Browsing the list of themes in Change Theme is easier because it's actually a list rather than a popup, and because non-Gtk+ themes are filtered out so they don't clutter the list like in Theme Switch. Also, themes are previewed instantly on selection right in the window, so you don't have to click yourself silly. All in all, it's a lot slicker and more pleasant to use.

Give it a spin, you won't be disappointed.

[reply] [top]


[»] Great Article...
by Buy Gifts - Jan 29th 2004 12:27:14

Really really great article thanks alot for the info i would will try to make one right now :D Thanks agin.

--
Digital Cameras - Biz

[reply] [top]


[»] Help: GTK can't find theme engines - not in module_path?
by module_path victim - Sep 26th 2003 00:30:31

When I try to switch to a theme I installed in RH9 (from art.gnome.org), I get the following error:
(gnome-theme-manager:21514): Gtk-WARNING **: Unable to locate theme engine in module_path: "<name of engine used by theme>"
I've tried asking Gtk nicely (adding module_path directives to the theme's gtkrc file), but it won't work. I checked, and there are files corresponding to the theme engine being used (mostly pixmaps - i.e. libpixmap.so etc.) in /usr/lib/gtk/themes/engines... what am I missing?

[reply] [top]


[»] GNOME
by Insight - Apr 5th 2003 21:06:46

I have tryed to install some themes for GTK 1.X on lredhat linux 8.0 but for some reason the theme never appears in the selectin box, i have no idea whi it is doing this also i cant seem to make the theme selecterr work either = \ well please let me know of anything you might think could help thx


-Insight

[reply] [top]


    [»] Re: GNOME
    by delic1 - May 8th 2003 13:41:11

    Usually all you have to do is go into the theme folder and there will be a directory named gtk.. GTK 2 looks for a directory named gtk-2.0 so , the fix is ln -s gtk gtk-2.0 Same thing i bet....

    [reply] [top]


[»] Can't install any new themes
by Mark Milano - Dec 3rd 2002 16:04:10

I am somewhat new to this, but here goes...
I am running Gnome 2.0 beta 3 on a Sun Blade 100 w/Solaris 8. I have downloaded what I thought to be the right theme files, but none of them will install. I downloaded the gtk-theme-switch utility and when I try to install a theme I get the following error:

"Sorry, "<path>/blueheartgtk-1.2.x.tar.gz" does not appear to be a valid theme directory or tarball!"

Any help would be greatly appreciated. I am sure it is something simple, like, I am not downloading the correct themes.

Mark

[reply] [top]


    [»] Re: Can't install any new themes
    by delic1 - May 8th 2003 13:39:22

    Usually all you have to do is go into the theme folder and there will be a directory named gtk.. GTK 2 looks for a directory named gtk-2.0 so , the fix is
    ln -s gtk gtk-2.0


    > I am somewhat new to this, but here
    > goes...
    > I am running Gnome 2.0 beta 3 on a Sun
    > Blade 100 w/Solaris 8. I have
    > downloaded what I thought to be the
    > right theme files, but none of them will
    > install. I downloaded the
    > gtk-theme-switch utility and when I try
    > to install a theme I get the following
    > error:
    >
    > "Sorry,
    > "<path>/blueheartgtk-1.2.x.tar.gz"
    > does not appear to be a valid theme
    > directory or tarball!"
    >
    > Any help would be greatly appreciated.
    > I am sure it is something simple, like,
    > I am not downloading the correct
    > themes.
    >
    > Mark

    [reply] [top]


[»] WindowMaker themes
by obsidian_fox - Nov 5th 2002 19:31:38

I've seen many, many, many poorly packed WindowMaker themes on this site. Ideally each should be in a <name>.themed folder and should contain any background, icons, etc.

This may seem like a hassle until you consider that (at least in the more recent 0.80+ releases of WindowMaker) a useful tool called "getstyle" is available. Getstyle will pack all the needed items into a single folder of the given name, append the .themed suffix, and leave the result in the folder you called it from. This tool makes packing WindowMaker themes VERY EASY! So PLEASE do it correctly.


usage:
>getstyle -p <name of theme>

for exampe: >getstyle -p goldenlina
produces: goldenlina.themed
contains:
jpeg image (background),
"style" (text document containing style configuration)

From this point you only need to:
>tar -czvf goldenlina.tar.gz goldenlina.themed
to prepare the theme for upload (at least if you have the most recent GNU tar).

Use this instead of piecing your theme together by hand... you'll save a LOT of work and make the end users (e.g. ME) much happier.

[reply] [top]


[»] How to install (name).themed Windowmaker themes
by php4u - Jul 24th 2002 20:40:03

As a new Windowmaker user, i am having difficulty installing the themes that untar as "themename.theme". The others that unpack corectly into the "background" and themes" directories work great. But some of the themes i have downloaded untar in a different manner...IE;
[rbrown@www WindowMaker]$ tar -xvzf cokebear-0.60.0.tar.gz
Coke-Bear.themed/
Coke-Bear.themed/style
Coke-Bear.themed/CokeBear.jpg
Coke-Bear.themed/menugradient.jpg
Coke-Bear.themed/menu.jpg
Coke-Bear.themed/focusedbar.jpg
Coke-Bear.themed/iconsgradient.jpg
.....where do these files go? They do not appear when i try to view the theme.

thanks!
Ralph

[reply] [top]


    [»] Re: How to install (name).themed Windowmaker themes
    by Erik F - Sep 7th 2002 13:22:13


    > .....where do these files go? They do
    > not appear when i try to view the
    > theme.
    >
    > thanks!
    > Ralph They need to be unzipped in ~/GNUstep/WindowMaker/Themes/ . Themes for all current WindowMaker versions unpack into a self-contained directory. Move the entire Coke-Bear.themed directory into the WindowMaker/Themes/ directory, and it should show up on your menu. -- erik

    --
    -- oblique strategy: repetition is a form of change

    [reply] [top]


      [»] Re: How to install (name).themed Windowmaker themes
      by pmantick - Feb 17th 2004 16:02:14


      >
      > % .....where do these files go? They do
      >
      > % not appear when i try to view the
      > % theme.
      > %
      > % thanks!
      > % Ralph
      >
      > They need to be unzipped in
      > ~/GNUstep/WindowMaker/Themes/ . Themes
      > for all
      > current WindowMaker versions unpack into
      > a self-contained
      > directory. Move the entire
      > Coke-Bear.themed directory
      > into the WindowMaker/Themes/ directory,
      > and it should
      > show up on your menu.
      > --
      > erik
      >
      I have tryed to install some themes for GTK 1.X on lredhat linux 8.0 but for some reason the theme never appears in the selectin box, i have no idea whi it is doing this also i cant seem to make the theme selecterr work either

      [reply] [top]


[»] KDE 1.x problem
by John - Jul 22nd 2002 10:17:51

I'm just starting off with linux, even though I know a whole crapload of computers, and I didn't realize I had to download the themes for KDE 2.x. I downloaded a whole bunch of themes for KDE 1.x (with the .themec extension). Is there any way for me to use those themes? Thanks

John

[reply] [top]


[»] Help with configuring.
by Nerv - Jul 18th 2002 05:34:05

I have some problem is the configuration of the Enlightenment. Right now I am running Enlightenment without the Gnome desktop manager. You know just plain Enlightenment. So what i wanted to know is how to add panels and docks in this kind of setup. The theme I am using is Evolution - a cool theme. Also i found out that running Enlightenment as a standalone without Gnome is much faster.

Can any provide me with the document on configuration like adding panels in Enlightenment?

[reply] [top]


[»] HELP!
by Drew - Jul 12th 2002 15:42:22

I'm not sure if this is the right place to post, but I need help configuring my terminal screen to have the transparency background that I see on all these cool themes. I am using RedHat 7.3 w/Gnome. I can install the themes, but when I pull up my terminal, it is a sold black background - not the cool see-through stuff posted on the website. If anyone could help, I would GREATLY appreciate it!

--
3 kinds of ppl in this world, those that can count and those that can't!

[reply] [top]


    [»] Try...
    by Sackett - Jul 14th 2002 01:00:35

    clicking on the "Settings" tab in the terminal and then select "Schema" ;)

    --
    Yea, OK, So........what's the speed of dark?

    [reply] [top]


    [»] Re: HELP!
    by nsolanoc - Jul 17th 2002 19:02:59


    > I'm not sure if this is the right place
    > to post, but I need help configuring my
    > terminal screen to have the transparency
    > background that I see on all these cool
    > themes. I am using RedHat 7.3 w/Gnome.
    > I can install the themes, but when I
    > pull up my terminal, it is a sold black
    > background - not the cool see-through
    > stuff posted on the website. If anyone
    > could help, I would GREATLY appreciate
    > it!
    <P>
    ---------------------
    <P>
    Don't forget save your options before close your session where you change your preferences; so, next time you'll see as you want it ;)

    [reply] [top]


[»] Aqua theme for enlightenment
by NighTiger - Jul 9th 2002 12:51:59

Hi guys,
I use Aqua as theme for enlightment, it's nice but there's something I don't like
I wish the close buttom was in the place of the "iconification" one, so that the icons
may go in the iconbox, and that the low menu hide by himself
thanx bye bye

--
NighTiger SPP member www.spippolatori.com

[reply] [top]


[»] Enlightenment
by Phill Kenoyer - May 25th 2002 15:05:22

I can't seem to find the docs for making Enlightenment Themes. I have been trying for weeks to figure it out. I hacked a few themes and finally figured out how to change the menubars so they dont have a button type surface, but it was very hard.

Where is the docs located...anyone?

--
-FreshFlesh

[reply] [top]


    [»] Re: Enlightenment
    by Larz Blomqvist - Jun 8th 2002 19:27:05


    > I can't seem to find the docs for making
    > Enlightenment Themes. I have been
    > trying for weeks to figure it out. I
    > hacked a few themes and finally figured
    > out how to change the menubars so they
    > dont have a button type surface, but it
    > was very hard.
    >
    > Where is the docs located...anyone?

    Looking for the same docs myself. Cant seem to loacate them anywhere. =(

    // n0id...

    [reply] [top]


      [»] Re: Enlightenment
      by frozenJim - Aug 1st 2005 15:55:09

      If I had the knowledge... I would write the wiki page myself. But I'm weeks into deciphering the in's and out's of themes and still don't know if I have all of the __ACTION commands etc. that are available. It is pretty disappointing that nobody will document thier work. Enlightenment is such a great effort but it is largely wasted due to the lack of documentation (a recurring theme in OpenSource). Surely SOMEBODY out there has an authoratative list of the __ACTIONS (and other scriptable items). SOMEBODY had to write this at one point... didn't they? How else did they get around to CREATING the damn things if they didn't write it all down at least ONE TIME? How did the few who have actually CREATED (not cloned.. or copied) their excellent themes (Aqua, for instance) ever learn that there was a scriptable item called __ACTION? Just by reverse-engineering the existing themes? So... maybe there are hundreds of themeable things out there.. but nobody knows what they are? Grrrrr... It's like a really nice piece of art left out in the rain to die. Such a waste of craftsmanship.

      --
      But I was so GOOD with Windows ;-(

      [reply] [top]


[»] Uninstalling
by antrik - May 25th 2002 07:34:36

There is an easy way to uninstall themes spread around several directories (as well es other things): Just use CheckInstall!

[reply] [top]


[»] window maker: you can also install a theme for all users (selectable via right click on desktop)
by Gürkan - May 25th 2002 07:30:08

cp backgroundpicture.jpg /usr/share/WindowMaker/Backgrounds
and
cp theme.style /usr/share/WindowMaker/Themes

[reply] [top]


[»] How to Use Themes (windowmaker)
by robert marshall - May 25th 2002 02:59:14

The info in the article about windowmaker themes is a little out of date - not so say that some themes here don't have this format but for modern ones the files are all in a single directory with the suffix themes and need unpacking in
~GNUStep/Library/WindowMaker/Themes



[reply] [top]


    [»] Re: How to Use Themes (windowmaker)
    by Thomas Zell - May 25th 2002 07:17:21


    > The info in the article about
    > windowmaker themes is a little out of
    > date - not so say that some themes here
    > don't have this format but for modern
    > ones the files are all in a single
    > directory with the suffix themes and
    > need unpacking in
    > ~GNUStep/Library/WindowMaker/Themes
    >
    >
    >
    >
    The directory created underneath the Themes directory is called themename.themed but otherwise he is right.

    [reply] [top]




© Copyright 2007 SourceForge, Inc., All Rights Reserved.
About freshmeat.net •  Privacy Statement •  Terms of Use •  Trademark Guidelines •  Advertise •  Contact Us • 
ThinkGeek •  Slashdot  •  ITMJ •  Linux.com •  NewsForge  •  SourceForge.net  •  Surveys •  Jobs •  PriceGrabber