mirror of
https://github.com/furyhawk/cloudy.git
synced 2026-05-20 15:11:10 +00:00
11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# color
|
|
RESET=$'\e[1;0m'
|
|
RED=$'\e[1;31m'
|
|
GREEN=$'\e[1;32m'
|
|
YELLOW=$'\e[1;33m'
|
|
RED_BACK=$'\e[101m'
|
|
GREEN_BACK=$'\e[102m'
|
|
YELLOW_BACK=$'\e[103m'
|