Geany: How do I increase the font size of the MultiTerm plugin in the Geany text editor?

I use geany text editor quite a lot.
I have activated the MultiTerm plugin, however the problem is that the font is too small and I cannot increase the font size.

Attempts:
1. Select the text in MultiTerm and Cmd +
2. Select the text in MultiTerm and go to the View menu, then select Increase Font.

I've searched for preference options and I couldn't find a solution.

The screenshot looks like this: enter image description here

I need a magnifying glass to see what letters are in the Multi Terminal in order to read them, but I assume that was not the purpose of the plugin.
If anyone has an idea, the suggestion would be really appreciated.

+3


source to share


1 answer


According to the plugin documentation , fontsize can be changed in the plugins config file:

~/.config/geany/plugins/multiterm/multiterm.conf

You can customize the background and font color.



sample from file:

[shell=default]

# This will be the tabs default tab label and won't change unless
# track_title is set to true.
name=Default Shell

# This is the command to fork in the VTE, leave blank for default shell
command=sh

# Make the tab label track the VTE title
track_title=true

# Background color, foreground color and font for the VTE
bg_color=#ffffff
fg_color=#000000
font=Monospace 44

      

+3


source







All Articles