I've just started trying out Lubuntu 12.04. I know I can edit ~/.config/openbox/lubuntu-rc.xml to assign keyboard shortcuts to open programs with certain parameters. For example, I can specify that Ctrl+Alt+T opens lxterminal with a certain size like this:
<!-- Launch a terminal on Ctrl + Alt + T-->
<keybind key="C-A-T">
<action name="Execute">
<command>lxterminal --geometry=148x30</command>
</action>
</keybind>
But how do I do the same thing for lxterminal when started by clicking on its icon in my Application Launch Bar? In other words, I'd like to have the same-sized terminal window if I click on the lxterminal icon in the Application Launch Bar or if I start lxterminal using Ctrl+Alt+T. Is it possible? How do I do that?
As far as I could make out, editing ~/.config/lxterminal/lxterminal.conf by adding geometry=148x30 doesn't help.