Conemu – How to Make Several Console Windows in One Tab

conemutasks

How to make several console windows in one tab from task file?
I want to make a grid 2×2 of consoles in one tab.
I can do it by hand when create new consoles and select "To right" or "To bottom" options.
But I want it to be created automatically on start up. Option "autosave/restore opened tasks" is unabled for some reason.
So the only way is to create it in task.
So, how can I create 2×2 grid in task?

Best Answer

This is your task contents. Checked in ConEmu build 120909.

>cmd -cur_console:n
cmd -cur_console:s1TVn
cmd -cur_console:s1THn
cmd -cur_console:s2THn

This is an example. Splitting in ConEmu may be as complex as you want, any configurations with any proportions are possible. Read project wiki for more information about -new_console and -cur_console switches.

To run all that without creating new Task

There is /cmdlist ConEmu.exe's switch.

Usage example for shortcut contents (on desktop, for example):

ConEmu -cmdlist cmd -cur_console:fn ||| cmd -cur_console:s1TVn ||| cmd -cur_console:s1THn ||| cmd -cur_console:s2THn

Need to run that from another cmd file? Here is consoles.cmd example:

start ConEmu -cmdlist cmd -cur_console:fn ^|^|^| cmd -cur_console:s1TVn ^|^|^| cmd -cur_console:s1THn ^|^|^| cmd -cur_console:s2THn
Related Question