Maximus5 / ConEmu

Customizable Windows terminal with tabs, splits, quake-style, hotkeys and more
https://conemu.github.io/
BSD 3-Clause "New" or "Revised" License
8.5k stars 570 forks source link

welcome prompt #2501

Open sSiDs opened 1 year ago

sSiDs commented 1 year ago

i still cannot get rid of

_0000

i just want c:\ prompt or something custom///i..e. bash$

Could you help me please$)

chrstfer commented 1 year ago

According to the header in %ConEmuBaseDir%\CmdInit.bat you can create %userprofile%.conemu\CmdInit.bat and put commands there to run when you run the command task. Put CLS on the last line of that file to clear the screen when cmd starts. This way you keep all the ConEmu customizations from the main CmdInit.bat batch file (which is run by the cmd task).

Alternatively you can change the task command from cmd.exe /k "%ConEmuBaseDir%\CmdInit.cmd" to cmd.exe /k "cls" if you don't care about the conemu customizations.