0

Can we somehow customize how PyGtk GUI windows look, by for example - changing the color of the title bar, the grey color of the windows, for a rich feel on the lines of Adobe Flex UI?

fixxxer
  • 15,568
  • 15
  • 58
  • 76
  • Why PyGtk? I'm looking for something more-or-less like what you ask in http://stackoverflow.com/questions/4610869/web-technologies-in-gui-apps. – Apalala Jan 14 '11 at 04:26
  • Well, have made a few PyGTK apps already and it serves my purpose of Desktop apps. – fixxxer Jan 14 '11 at 08:03

1 Answers1

2

GTK's way seems to be that the look is a user choice, not a developer choice.

So, the user can change the GTK Theme, and that will affect all gtk apps, including yours.

Take a look at some themes here.

nosklo
  • 217,122
  • 57
  • 293
  • 297