2025-03-02 00:09:43 +09:00

74 lines
2.2 KiB
Bash
Executable File

#!/bin/bash
# 💫 https://github.com/JaKooLit 💫 #
# ASUS ROG ) #
asus=(
power-profiles-daemon
)
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Change the working directory to the parent directory of the script
PARENT_DIR="$SCRIPT_DIR/.."
cd "$PARENT_DIR" || { echo "${ERROR} Failed to change directory to $PARENT_DIR"; exit 1; }
# Source the global functions script
if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then
echo "Failed to source Global_functions.sh"
exit 1
fi
# Set the name of the log file to include the current date and time
LOG="install-$(date +%d-%H%M%S)_rog.log"
# Installing enhancemet
for PKG1 in "${asus[@]}"; do
install_package "$PKG1" 2>&1 | tee -a "$LOG"
if [ $? -ne 0 ]; then
echo -e "\033[1A\033[K${ERROR} - $PKG1 Package installation failed, Please check the installation logs"
exit 1
fi
done
printf " enabling power-profiles-daemon...\n"
sudo systemctl enable power-profiles-daemon 2>&1 | tee -a "$LOG"
# Function to handle the installation and log messages
install_and_log() {
local project_name="$1"
local git_url="$2"
printf "${NOTE} Installing $project_name\n"
if git clone "$git_url" "$project_name"; then
cd "$project_name" || exit 1
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh 2>&1 | tee -a "$LOG"
source "$HOME/.cargo/env"
make
if sudo make install 2>&1 | tee -a "$LOG"; then
printf "${OK} $project_name installed successfully.\n"
if [ "$project_name" == "supergfxctl" ]; then
# Enable supergfxctl
sudo systemctl enable --now supergfxd 2>&1 | tee -a "$LOG"
fi
else
echo -e "${ERROR} Installation failed for $project_name."
fi
#moving logs into main install-logs
mv $LOG ../Install-Logs/ || true
cd - || exit 1
else
echo -e "${ERROR} Cloning $project_name from $git_url failed."
fi
}
# Download and build asusctl
install_and_log "asusctl" "https://gitlab.com/asus-linux/asusctl.git"
# Download and build supergfxctl
install_and_log "supergfxctl" "https://gitlab.com/asus-linux/supergfxctl.git"
printf "\n%.0s" {1..2}