Code::Blocks Forums

User forums => Help => Topic started by: myrdin on January 01, 2015, 12:55:36 pm

Title: How to enlarge output window (console)??
Post by: myrdin on January 01, 2015, 12:55:36 pm
Hi,

my first steps with codeblocks after installing on my Linux MINT 17 machine are console applictions. How can I enlarge the small output window. (I found out, that itś possible to clear it with "system (clear);")
There must exist commands to manipulate this console-window....

myrdin
Title: Re: How to enlarge output window (console)??
Post by: oBFusCATed on January 01, 2015, 05:35:09 pm
You can changed what options are passed to the terminal program in Settings -> Environment -> General -> Terminal to launch console programs.
Title: Re: How to enlarge output window (console)??
Post by: myrdin on January 02, 2015, 09:58:16 am
Much thanks,

I have allready done so. But the launched console (xterm) wasn't a proper candidate. After installing "bash", I can shedule on it's menu how big it has to be when in use.

myrdin
Title: Re: How to enlarge output window (console)??
Post by: pirx67 on January 10, 2015, 02:24:26 pm
It's not clear to me how installing bash solved your problem but I would like to share my settings for xterm as reference for others.

I use as "Terminal to launch console programs" the following command

Code
xterm -geometry 132x50 -T $TITLE -e

The -geometry part does the resizing magic. How to specify correct parameters is shown in the man page of X.

I still use as "Shell to run commands in" the following command
Code
/bin/sh -c

pirx67
Title: Re: How to enlarge output window (console)??
Post by: bison on April 24, 2020, 09:41:57 pm
I don't know if this will help, but I hold down the control key and use the scroll wheel to enlarge or shrink. Same in the main code window. (I'm on a C with Windows 10).