Differences
This shows you the differences between two versions of the page.
| — | windows:scripting:conemu_shell [2019/10/31 09:06] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Script to modify ConEmu prompt ====== | ||
| + | to " | ||
| + | <code bash |Cmd> | ||
| + | rem username@pc | ||
| + | set P1=$E[32m$E]9; | ||
| + | rem path | ||
| + | if " | ||
| + | set P2=$E[95m$P$E[90m | ||
| + | ) else ( | ||
| + | set P2=$E[92m$P$E[90m | ||
| + | ) | ||
| + | |||
| + | rem Is admin or user? | ||
| + | if " | ||
| + | set P3=$E[90m$$ | ||
| + | ) else ( | ||
| + | set P3=$E[90m$G | ||
| + | ) | ||
| + | |||
| + | rem Finally reset color and add space | ||
| + | set P4=$E[m$S | ||
| + | |||
| + | prompt %P1%%P2%%P3%%P4%</ | ||