Updated README and new colors.sh script.

This commit is contained in:
2024-01-07 21:31:06 +00:00
parent b20a0d1fde
commit ba5810c091
2 changed files with 22 additions and 0 deletions

View File

@@ -7,6 +7,19 @@
- Pacman (Arch Linux base) - Pacman (Arch Linux base)
- Gnome Desktop - 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 ## Todo
- [ ] Automatically install extensions - [ ] Automatically install extensions
- Vitals - Vitals

9
scripts/color.sh Normal file
View File

@@ -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}"