Hi, I'd like the text in Geany's tabs a little larger.
All I can manage is to increase the text size of the tab I'm currently editing:
# document status colors style "geany-document-status-changed-style" { fg[NORMAL] = "#00FF00" fg[ACTIVE] = "#FF0000" font_name = "Comic Sans MS 14" } widget "*.geany-document-status-changed" style "geany-document-status-changed-style"
I went through geany.gtkrc for hints but couldn't see any that related to all tabs.
Is this something I may have to do in my gtk2 theme's gtkrc instead?
Thanks,
AESouza
On Fri, 29 Nov 2013 12:12:30 +0530 Augustine Souza aesouza2008@gmail.com wrote:
I'd like the text in Geany's tabs a little larger.
All I can manage is to increase the text size of the tab I'm currently editing: [...]
I went through geany.gtkrc for hints but couldn't see any that related to all tabs.
Is this something I may have to do in my gtk2 theme's gtkrc instead?
From my gtk2 theme's gtkrc:
style "geany" = "default" { GtkNotebook::tab-overlap = 1 GtkNotebook::tab-curvature = 0 ... }
widget "GeanyMainWindow.GtkVBox.GtkVPaned.GtkHPaned.GtkNotebook" style "geany"
That'll probably work in geany.gtkrc as well, I simply prefer all program specific styles in a single file.
On Fri, Nov 29, 2013 at 11:26 PM, Dimitar Zhekov dimitar.zhekov@gmail.comwrote:
From my gtk2 theme's gtkrc:
style "geany" = "default" { GtkNotebook::tab-overlap = 1 GtkNotebook::tab-curvature = 0 ... }
widget "GeanyMainWindow.GtkVBox.GtkVPaned.GtkHPaned.GtkNotebook" style "geany" ...
Thank You! Your widget did the trick. I'm now using:
style "geany" = "geany-tabs" { font_name = "Droid Sans Mono 13" }
widget "GeanyMainWindow.GtkVBox.GtkVPaned.GtkHPaned.GtkNotebook.*" style "geany"
# document status colors style "geany-document-status-changed-style" { fg[NORMAL] = "#8DB949" fg[ACTIVE] = "#FF0000" font_name = "Comic Sans MS 14" } widget "*.geany-document-status-changed" style "geany-document-status-changed-style"
Thanks once again :)
AESouza