You can increase the font size by creating a ~/.gtkrc-2.0.gnucash
-file with the following contents:
style "font" { font_name = "Arial Narrow 12" } widget_class "*" style "font" gtk-font-name = "Arial Narrow 12"
Info taken from the official FAQ
Как я могу изменить размер шрифта в GnuCash на OS X? Я не смог ничего найти в настройках.
Я попытался использовать gconftool-2 в ~ / .gconf, где GnuCash хранит свои настройки GTK, но я не смог заставить его прочитать каталог настроек.
You can increase the font size by creating a ~/.gtkrc-2.0.gnucash
-file with the following contents:
style "font" { font_name = "Arial Narrow 12" } widget_class "*" style "font" gtk-font-name = "Arial Narrow 12"
Info taken from the official FAQ
Для GnuCash 3.x вам необходимо создать gtk.css
в каталоге ~/Application\ Support/Gnucash/config/gtk-3.0
следующее содержимое:
* { font: 14pt arial, sans-serif; }
или какие-либо настройки CSS, которые вы предпочитаете.