Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ if [[ -f /etc/os-release ]]; then
update_cmd="$SUDO $pkg_manager -Sy"
install_cmd="$SUDO $pkg_manager -S --noconfirm"
echo -e "${GREEN}Detected Arch-based system. Using pacman package manager.${NC}"
elif [[ "$ID_LIKE" == *"fedora"* || "$ID" == *"fedora"* ]]; then
pkg_manager="dnf"
update_cmd="$SUDO $pkg_manager update"
install_cmd="$SUDO $pkg_manager install -y"
echo -e "${GREEN}Detected Fedora-based system. Using dnf package manager.${NC}"
else
echo -e "${ORANGE}Unsupported Linux distribution. Please install the required dependencies manually.${NC}"
fi
Expand Down