34 | | It is possible to globaly change the application look'n'feel using the GTK styles, by creating a '''{{{gtkrc}}}''' user file: |
35 | | |
36 | | * '''{{{C:\\Documents and Settings\<user>\Application Data\papywizard\gtkrc}}}'''¹ under Windows |
37 | | * '''{{{~/.config/papywizard/gtkrc}}}''' under linux |
38 | | * '''{{{/home/user/.config/papywizard/gtkrc}}}''' under maemo |
39 | | |
40 | | Here is a sample file to change the font size: |
41 | | |
42 | | {{{ |
43 | | # gtkrc |
44 | | |
45 | | style "user-font" |
46 | | { |
47 | | font_name="Sans Serif 13" |
48 | | } |
49 | | widget_class "*" style "user-font" |
50 | | |
51 | | gtk-font-name="Sans Serif 13" |
52 | | }}} |
53 | | |
54 | | I'm not familiar with styles under GTK, but there are plenty documentation arround. If you write some nice themes, please share them ;o). |
55 | | |
56 | | ''Note: this only works for release 1.5.2 or above.'' |
| 34 | It is possible to globaly change the application look'n'feel using the GTK styles. See [wiki:UserGuideSvn#Cutomization]. |