mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
74 lines
2.1 KiB
Bash
Executable File
74 lines
2.1 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! ##
|
|
# Determine the directory where the script is located
|
|
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" || exit 1
|
|
|
|
source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"
|
|
|
|
# Sourcing Rust
|
|
source $HOME/.cargo/env
|
|
|
|
# Set the name of the log file to include the current date and time
|
|
LOG="install-$(date +%d-%H%M%S)_rog.log"
|
|
|
|
# Installing enhancement
|
|
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
|
|
|
|
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"
|
|
|
|
clear
|