This commit is contained in:
pika 2025-05-11 17:35:05 +02:00
parent 2f40059eb0
commit 2bc5777b03

View file

@ -110,21 +110,25 @@ askThings() {
}
instCustom() {
case $bar in
waybar) checkAndInstall waybar ;;
hyprpanel)
case $distro in
arch) run _install ags-hyprpanel-git ;;
*) echo_error "Hyprpanel cannot be installed for ${YELLOW}${distro}${RED} right now.." ;;
for _d in "${advDeps[@]}"; do
case "$_d" in
hyprpanel)
case $distro in
arch) run _install ags-hyprpanel-git ;;
*) echo_error "Hyprpanel cannot be installed for ${YELLOW}${distro}${RED} right now.." ;;
esac
;;
gBar)
case $distro in
arch) run _install gbar-git ;;
*) echo_error "gBar cannot be installed for ${YELLOW}${distro}${RED} right now.." ;;
esac
;;
*)
checkAndInstall "$_d"
;;
esac
;;
gBar)
case $distro in
arch) run _install gbar-git ;;
*) echo_error "gBar cannot be installed for ${YELLOW}${distro}${RED} right now.." ;;
esac
;;
esac
done
}
cloneDotfiles() {