]> git.armaanb.net Git - gen-shell.git/blobdiff - src/prompt.cpp
made usable!
[gen-shell.git] / src / prompt.cpp
index 3d4eca0a405ccd379d75bdf40e31ff252089602b..93654d4653855c4c58bbd6fe749f77023983abfb 100644 (file)
@@ -27,7 +27,6 @@
 #include <cmake.h>
 #include <vector>
 #include <string>
-#include <Color.h>
 
 static std::vector <std::string> contextColors = {
   "bold white on red",
@@ -74,7 +73,6 @@ std::string composeContexts (bool pretty /* = false */)
     if (pretty)
       combined += (combined != "" ? " " : "")
                 + std::string ("\001")
-                + Color::colorize ("\002 " + contexts[i] + " \001", contextColors[i % contextColors.size ()])
                 + "\002";
     else
       combined += (combined != "" ? " " : "") + contexts[i];
@@ -88,11 +86,7 @@ std::string composeContexts (bool pretty /* = false */)
 ////////////////////////////////////////////////////////////////////////////////
 std::string promptCompose ()
 {
-  auto decoration = composeContexts (true);
-  if (decoration.length ())
-    return "task " + decoration + "> ";
-
-  return ">>>";
+  return "% ";
 }
 
 ////////////////////////////////////////////////////////////////////////////////