Using gtk3, how can I change the default GtkWindow titlebar color? Would it involve GtkStyleContext? I've only used GtkCssProvider.

link|improve this question

38% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can't change the titlebar color from GTK. The titlebar is drawn by the window manager, and GTK doesn't "know" anything about it. You can only communicate with the window manager through "hints", such as whether the window should have a titlebar or what string should be displayed there, but the window manager is free to ignore them.

link|improve this answer
What about through GtkThemingEngine? link – mike Jan 8 at 19:31
Nope, that's for styling the contents of GTK windows. Still has nothing to do with the window manager. – ptomato Jan 8 at 20:54
Ok,thanks anyway. – mike Jan 8 at 22:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.