Skip to content

Commit

Permalink
feat (Hyde-install): Support for pre compiled aur helper
Browse files Browse the repository at this point in the history
  • Loading branch information
kRHYME7 committed Sep 13, 2024
1 parent c0531e5 commit 068b301
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Scripts/Install-Hyde-pacman
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,14 @@ fi
#----------------#

if ! chk_list "aurhlpr" "${aurList[@]}"; then
echo -e "Available aur helpers:\n[1] yay\n[2] paru"
prompt_timer 120 "Enter option number"
echo -e "Available aur helpers:\n[1] yay\n[2] yay (bin)\n[3] paru\n[4] paru (bin)"
prompt_timer 120 "Enter option number [default: yay]"

case "${promptIn}" in
1) export getAur="yay" ;;
2) export getAur="paru" ;;
2) export getAur="yay-bin" ;;
3) export getAur="paru" ;;
4) export getAur="paru-bin" ;;
*)
echo -e "...Invalid option selected..."
exit 1
Expand Down

0 comments on commit 068b301

Please sign in to comment.