Merged colors.sh with functions.sh, moved to separate 'includes' directory

This commit is contained in:
PedoDeveloper 2024-11-13 11:54:58 +00:00
parent c84085236d
commit ac4da0bab7
2 changed files with 5 additions and 8 deletions

View file

@ -1,6 +1,10 @@
#!/bin/bash
# Common utility functions shared across multiple files.
source colors.sh
RESET="\033[0m"
GREEN="\033[1;32m"
YELLOW="\033[1;33m"
RED="\033[1;31m"
check_dependencies() {
# Usage: check_dependencies "7z" "unrar" "curl" ...

View file

@ -1,7 +0,0 @@
#!/bin/bash
# Color variables for logging.
RESET="\033[0m"
GREEN="\033[1;32m"
YELLOW="\033[1;33m"
RED="\033[1;31m"