summaryrefslogtreecommitdiff
path: root/source/prompt/ps1.d
blob: 9bf8021389d1cbfa88a59be2909d97e3119e5c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module prompt.ps1;

import comp.hr;
import style.color;

string ps1(int col) {
  string ps;

  ps ~= hr(col);

  ps ~= "> ".setColor(Color.magenta);

  return ps;
}