30 lines
1.5 KiB
Bash
30 lines
1.5 KiB
Bash
#!/bin/bash
|
|
# DYNR Module: Help & Discovery
|
|
|
|
run_help() {
|
|
BLUE='\033[38;5;45m'; PURPLE='\033[38;5;127m'; GOLD='\033[38;5;178m'; NC='\033[0m'
|
|
|
|
clear
|
|
echo -e "${PURPLE}=================================================${NC}"
|
|
echo -e "${BLUE} 🐉 DYNASTY REVOLUTION: ARCHIVE HELP 🐉 ${NC}"
|
|
echo -e "${PURPLE}=================================================${NC}"
|
|
echo -e "${GOLD}Available Stances (Modules) in the Vault:${NC}"
|
|
echo -e " ${BLUE}system-info${NC} - View OS, Kernel, and CPU specs"
|
|
echo -e " ${BLUE}network${NC} - Connectivity & DNS diagnostics"
|
|
echo -e " ${BLUE}system-pulse${NC} - Real-time hardware monitoring"
|
|
echo -e " ${BLUE}log${NC} - View and purge system logs"
|
|
echo -e " ${BLUE}rclone-wizard${NC} - Interactive cloud file transfers"
|
|
echo -e " ${BLUE}help${NC} - Show this discovery scroll"
|
|
echo -e "${PURPLE}-------------------------------------------------${NC}"
|
|
echo -e "${GOLD}Core Commands:${NC}"
|
|
echo -e " ${BLUE}dynr list${NC} - Show modules installed locally"
|
|
echo -e " ${BLUE}dynr refresh <n>${NC}- Redownload a specific module"
|
|
echo -e " ${BLUE}dynr update${NC} - Update the CLI engine itself"
|
|
echo -e " ${BLUE}dynr exit${NC} - Leave the Dynasty"
|
|
echo -e "${PURPLE}=================================================${NC}"
|
|
|
|
read -p "Press Enter to return to the Dynasty..." < /dev/tty
|
|
|
|
# --- The Return Logic ---
|
|
dynr
|
|
} |