git.sophuwu.com > bashprompt   
              0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
             /*
 * ip.hpp
 * this is to get the ip address of the machine and convert it to a color
 */

#ifndef BASHPROMPT_IP_H
#define BASHPROMPT_IP_H
#include "common.hpp"

struct IP {
    int values[4] = {0,0,0,0};
    str string = "";
    void fromString(str s) {
        std::vector<str> parts = split(s, '.');
        for (int i = 0; i < 4; i++) values[i] = std::stoi(parts[i]);
        string = s;
    }
    void fromCmd(str cmd = "hostname -i") {
        fromString(docmd(cmd));
    }
    str toColor() {
        str ret = "";
        ret+= color2(values[0], values[1]);
        ret+= color2(values[2], values[3]);
        return ret;
    }
};


#endif //BASHPROMPT_IP_H