Add files via upload

This commit is contained in:
stornic56
2026-05-07 01:31:33 -05:00
committed by GitHub
parent b2e83321e2
commit f5c431f063
+9 -4
View File
@@ -22,6 +22,9 @@ if [ -f "${MODULES_DIR}/firmware.sh" ]; then
fi fi
if [ -f "${MODULES_DIR}/gpu.sh" ]; then if [ -f "${MODULES_DIR}/gpu.sh" ]; then
source "${MODULES_DIR}/gpu.sh" source "${MODULES_DIR}/gpu.sh"
if [ -f "${MODULES_DIR}/kernel.sh" ]; then
source "${MODULES_DIR}/kernel.sh"
fi
fi fi
if [ -f "${MODULES_DIR}/gaming.sh" ]; then if [ -f "${MODULES_DIR}/gaming.sh" ]; then
source "${MODULES_DIR}/gaming.sh" source "${MODULES_DIR}/gaming.sh"
@@ -48,12 +51,13 @@ else
fi fi
main_menu() { main_menu() {
PS3="Select an option (1-7): " PS3="Select an option (1-8): "
options=( options=(
"User Privileges & Feedback" "User Privileges & Feedback"
"Configure repositories" "Configure repositories"
"Setup Wireless & Firmware" "Setup Wireless & Firmware"
"Configure Graphics Stack and Tools" "Configure Graphics Stack and Tools"
"Update Kernel to Backports"
"Gaming Setup and Performance" "Gaming Setup and Performance"
"Install extra applications" "Install extra applications"
"Exit" "Exit"
@@ -78,9 +82,10 @@ main_menu() {
2) configure_repos ;; 2) configure_repos ;;
3) install_firmware ;; 3) install_firmware ;;
4) install_gpu_drivers ;; 4) install_gpu_drivers ;;
5) install_gaming ;; 5) install_kernel_backports ;;
6) install_extras ;; 6) install_gaming ;;
7) echo "Exiting."; exit 0 ;; 7) install_extras ;;
8) echo "Exiting."; exit 0 ;;
*) echo "Invalid choice. Please try again." ;; *) echo "Invalid choice. Please try again." ;;
esac esac
break break