Dotfiles v2.0

This commit is contained in:
2024-03-21 16:02:35 +00:00
parent f727c95bce
commit e001c92190
121 changed files with 218 additions and 570 deletions

18
scripts/color.sh Executable file
View File

@@ -0,0 +1,18 @@
#! /bin/bash
RED="\e[31m"
GREEN="\e[32m"
YELLOW="\e[33m"
BLUE="\e[34m"
MAGENTA="\e[35m"
CYAN="\e[36m"
GRAY="\e[90m"
BOLD="\e[1m"
FAINT="\e[2m"
ITALIC="\e[3m"
UNDERLINE="\e[4m"
ENDCOLOR="\e[0m"
# Example usage: echo -e "${GRAY}Gray text${ENDCOLOR}"