Re: overridding the theme in ~.gtkrc-2.0



zentara wrote:

So you setup a wrapper script, and it will override the default ~.gtkrc-2.0

##############################
#!/bin/sh
export GTK2_RC_FILES='/usr/local/share/themes/Bumblebee/gtk-2.0/gtkrc' 
./myapp_w-custom-rc
###############################

Probably it's sufficient to set this environment variable in your Perl 
program, I think before Gtk2->init or better in a BEGIN block to execute
it early:

  BEGIN { $ENV{GTK2_RC_FILES} = '...' }
  use Gtk2 -init;
  ...

This way no wrapper script should be needed.

Regards,

Jörn

-- 
Think before you code. And while you're doing it probably won't hurt. ;)

Attachment: pgpwmrIeZtzMZ.pgp
Description: PGP signature



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]