forked from GPGTools/MacGPG2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.sh
executable file
·65 lines (51 loc) · 926 Bytes
/
status.sh
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
function escape {
printf "\033[%sm" $1
}
function underline {
out=$(escape "4;$1")
printf $out
}
function bold {
out=$(escape "1;${1}")
printf $out
}
function color {
out=$(escape "0;$1")
printf $out
}
function reset {
out=$(escape "0")
printf $out
}
function red {
out=$(underline "31")
printf $out
}
function blue {
out=$(bold "34")
printf $out
}
function black {
out=$(bold "30")
printf $out
}
function white {
out=$(bold "39")
printf $out
}
function green {
out=$(color 92)
printf $out
}
function status {
echo -e $(printf "%s==>%s %s $1" "$(blue)" "$(reset)" '-')
}
function title {
echo -e $(printf "%s==>%s $1%s" "$(blue)" "$(white)" "$(reset)")
}
function success {
echo -e $(printf "%s==>%s $1%s" "$(green)" "$(white)" "$(reset)")
}
function error {
echo -e $(printf "%sError%s: %s" "$(red)" "$(reset)" "$1")
}