/* * File: prompt.cpp * This program is used to generate a bash prompt with rainbow colors. * It can also be used to generate the necessary environment variables * */ #include #include #include #include #include #include #include #include #include #include "rainbow.hpp" typedef std::string str; int randint(int max) { srand(std::chrono::duration_cast( std::chrono::high_resolution_clock::now().time_since_epoch()).count()); return rand() % max; } #define setenv(a) std::cout << #a << "=\"" << a << "\"" << std::endl #define exportenv(k,v) std::cout << "export " << k << "=\"" << v << "\"" << std::endl str mouthlist = ")3>]DPO"; str eyelist = ";:="; str emote(){ return eyelist.substr(randint(eyelist.length()-1),1) + mouthlist.substr(randint(mouthlist.length()-1),1); } str docmd(std::string inputted) { FILE* file = popen(inputted.c_str(), "r"); char buff[1024]; int n = fread(buff, 1, sizeof(buff), file); pclose(file); str r = std::string(buff, n); if (r.back() == '\n') r.pop_back(); return r; } str envorcmd(str env, str cmd) { str ret = ""; try { ret = std::string(getenv(env.c_str())); } catch (std::exception e) { ret = docmd(cmd); } return ret; } int intenv(const char* env) { int n=0; const char* val = getenv(env); if (val == NULL) return -1; for (int i = 0; val[i] >= '0' && val[i] <= '9'; i++) n = n*10 + (int)val[i] - (int)'0'; return n; } typedef std::pair paStr; struct escape { paStr PS = paStr("\\[\\e[","m\\]"); paStr XT = paStr("\033[","m"); str PS1 = ""; bool debugON = false; str wrap(str s) { if(debugON)return XT.first+s+XT.second; return PS.first + s + PS.second; } str color(str color,bool background=false) { if (color.length()==0) return ""; if (color.length() <= 3)color="5;"+color; else color="2;"+color; if (background) return "48;" + color; return "38;" + color; } void add(str s, str fg="", str bg="", bool bold=false) { if (bold==1) s = wrap("1") + s; if (fg!="") s = wrap(color(fg)) + s; if (bg!="") s = wrap(color(bg,true)) + s; PS1 += s + wrap("0"); } void set() { setenv(PS1); } }; int main(int argc,char** argv) { escape PS1; for (int i=1;i