diff --git a/README.md b/README.md index 6942850c..ce2f68f9 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,19 @@ - Pacman (Arch Linux base) - Gnome Desktop +## Scripts +### Custom bash commands +- `p` - Cross-distro package manager wrapper. +- `m` - Cross-distro maintenance script. + +### Custom scripts used by other programs +- `p.sh` - For managing packages. +- `colors.sh` - To Add colors to other scripts. + +### Scripts for the user +- `codeAI-ollama.sh` - Ollama AI setup helper for code generation. +- `generalAI-jan.sh` - Install jan, a graphical llm runner. + ## Todo - [ ] Automatically install extensions - Vitals diff --git a/scripts/color.sh b/scripts/color.sh new file mode 100644 index 00000000..2b20509f --- /dev/null +++ b/scripts/color.sh @@ -0,0 +1,9 @@ +#! /bin/bash + +RED="\e[31m" +GREEN="\e[32m" +YELLOW="\e[33m" +GRAY="\e[90m" +ENDCOLOR="\e[0m" + +# Example usage: echo -e "${GRAY}Faded text${ENDCOLOR}"