Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing default terminal in Codeblocks

Tags:

c++

codeblocks

Windows cmd does not support ANSI colour codes and there are a lot of better terminals in the internet. I'm new to code::blocks and want to change the default terminal. What I did is:

Settings>Environment and I just can't change "Terminal to launch console programs" field. How can I do that?

like image 662
wirher Avatar asked Dec 16 '12 10:12

wirher


People also ask

Does Code::Blocks have terminal?

You can use command line options to launch the terminal window with desired settings. In codeblocks : Go to Settings > Environment > General Settings.

How do I get console back in Code::Blocks?

Click on build->run or hit Ctrl+F10 and a new CMD Window should pop up, showing you your "Hello world!". Show activity on this post.


1 Answers

I think you can't able to change default terminal on Window's Operating System because none other is present there. But if you are using Linux like Ubuntu you can change it's default command window as gnome-terminal --title=$TITLE -x in place of xterm -T $TITLE -e on Settings>Environment>"Terminal to launch console programs"

like image 137
nKandel Avatar answered Sep 20 '22 10:09

nKandel