mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-18 03:26:17 +00:00
59 lines
2.0 KiB
Bash
59 lines
2.0 KiB
Bash
#!/bin/bash
|
|
|
|
# ==========================================================
|
|
# ProxMenux - A menu-driven script for Proxmox VE management
|
|
# ==========================================================
|
|
# Author : MacRimi
|
|
# Copyright : (c) 2024 MacRimi
|
|
# License : (CC BY-NC 4.0) (https://github.com/MacRimi/ProxMenux/blob/main/LICENSE)
|
|
# Version : 1.0
|
|
# Last Updated: 28/01/2025
|
|
# ==========================================================
|
|
|
|
|
|
# Configuration ============================================
|
|
LOCAL_SCRIPTS="/usr/local/share/proxmenux/scripts"
|
|
BASE_DIR="/usr/local/share/proxmenux"
|
|
UTILS_FILE="$BASE_DIR/utils.sh"
|
|
VENV_PATH="/opt/googletrans-env"
|
|
|
|
if [[ -f "$UTILS_FILE" ]]; then
|
|
source "$UTILS_FILE"
|
|
fi
|
|
load_language
|
|
initialize_cache
|
|
# ==========================================================
|
|
|
|
while true; do
|
|
OPTION=$(dialog --clear --backtitle "ProxMenux" --title "$(translate "GPUs and Coral-TPU Menu")" \
|
|
--menu "\n$(translate "Select an option:")" 20 70 8 \
|
|
"1" "$(translate "Add HW iGPU acceleration to an LXC")" \
|
|
"2" "$(translate "Add Coral TPU to an LXC")" \
|
|
"3" "$(translate "Install/Update Coral TPU on the Host")" \
|
|
"4" "$(translate "Return to Main Menu")" \
|
|
2>&1 >/dev/tty)
|
|
|
|
case $OPTION in
|
|
1)
|
|
bash "$LOCAL_SCRIPTS/configure_igpu_lxc.sh"
|
|
if [ $? -ne 0 ]; then
|
|
return
|
|
fi
|
|
;;
|
|
2)
|
|
bash "$LOCAL_SCRIPTS/install_coral_lxc.sh"
|
|
if [ $? -ne 0 ]; then
|
|
return
|
|
fi
|
|
;;
|
|
3)
|
|
bash "$LOCAL_SCRIPTS/gpu_tpu/install_coral_pve9.sh"
|
|
if [ $? -ne 0 ]; then
|
|
return
|
|
fi
|
|
;;
|
|
4) exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh" ;;
|
|
*) exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh" ;;
|
|
esac
|
|
done
|