Search code examples
consolewindowsizeqt-creator

How to change an initial size of qtcreator's qtcreator_process_stub window (on Ubuntu)?


I have an application being developed in QT Creator on Ubuntu. I need to run some tests and to see their results I use console — qtcreator_process_stub window is opened. And now comes my question: how to set its initial size? (especially the width to make results more readable). Setting the width by mouse each time I run my app is quite annoying.


Solution

  • I found a simple solution:

    Go to Tools->Options->General->Environment: System->Terminal. There is a command used to invoke a terminal. In my case I needed to change the command to:

    xterm -geometry 250 -e
    

    That's all;)