.dotfiles/utils/colors.sh
tombdf 15b6581aa1
feat(install): add initial setup script
- Added install.sh script to automate the installation process.
- Included functions for initial checks, component installation, and
  configuration setup.
- Ensured the script runs with strict mode enabled for better error
  handling.
- Added user confirmation prompt before starting the setup.
- Displayed a completion message and prompt for system reboot.
2024-12-18 01:00:03 +01:00

9 lines
116 B
Bash

#!/bin/bash
# Definition of colors
BLUE="\033[1;34m"
GREEN="\e[32m"
RED="\e[31m"
YELLOW="\e[33m"
DEFAULT="\033[0m"