10 lines
163 B
Bash
Executable file
10 lines
163 B
Bash
Executable file
#!/run/current-system/profile/bin/bash
|
|
|
|
ERROR() {
|
|
>&2 printf "\x1b[91mError: \x1b[0m\x1b[98m$1\n"
|
|
}
|
|
|
|
EVENT() {
|
|
printf "\x1b[95m>>> \x1b[0m\x1b[98m$1\n"
|
|
}
|
|
|