This commit is contained in:
JaKooLit
2025-02-06 19:00:39 +09:00
parent fd1358d920
commit 8a60729680
2 changed files with 8 additions and 8 deletions

View File

@@ -189,7 +189,7 @@ if lspci | grep -i "nvidia" &> /dev/null; then
fi fi
if [[ "$nvidia" == "Y" ]]; then if [[ "$nvidia" == "Y" ]]; then
ask_yes_no "-Would you like to ${YELLOW}blacklist nouveau?${RESET} (y/n): " nouveau ask_yes_no "-Would you like to ${YELLOW}blacklist nouveau?${RESET}" nouveau
fi fi
# AUR helper # AUR helper
@@ -208,14 +208,14 @@ printf "\n"
ask_yes_no "-Do you want to install ${YELLOW}Thunar file manager${RESET}?" thunar ask_yes_no "-Do you want to install ${YELLOW}Thunar file manager${RESET}?" thunar
if [[ "$thunar" == "Y" ]]; then if [[ "$thunar" == "Y" ]]; then
ask_yes_no "-Set ${YELLOW}Thunar${RESET} as the default file manager? (y/n): " thunar_choice ask_yes_no "-Set ${YELLOW}Thunar${RESET} as the default file manager?" thunar_choice
fi fi
# Input group # Input group
printf "\n" printf "\n"
if ! groups "$(whoami)" | grep -q '\binput\b'; then if ! groups "$(whoami)" | grep -q '\binput\b'; then
printf "${NOTE} Please note that adding yourself to the ${YELLOW}input${RESET} group might be necessary for ${YELLOW}waybar keyboard-state functionality${RESET} \n." printf "${NOTE} Please note that adding yourself to the ${YELLOW}input${RESET} group might be necessary for ${YELLOW}waybar keyboard-state functionality${RESET} \n."
ask_yes_no "-Would you like to be added to the ${YELLOW}input${RESET} group? (y/n)" input_group ask_yes_no "-Would you like to be added to the ${YELLOW}input${RESET} group?" input_group
fi fi
printf "\n" printf "\n"
@@ -226,21 +226,21 @@ printf "\n"
ask_yes_no "-Install & configure ${YELLOW}SDDM${RESET} as login manager?" sddm ask_yes_no "-Install & configure ${YELLOW}SDDM${RESET} as login manager?" sddm
if [[ "$sddm" == "Y" ]]; then if [[ "$sddm" == "Y" ]]; then
ask_yes_no "-Download and Install ${YELLOW}SDDM Theme?${RESET} (y/n): " sddm_theme ask_yes_no "-Download and Install ${YELLOW}SDDM Theme?${RESET} " sddm_theme
fi fi
printf "\n" printf "\n"
ask_yes_no "-Install ${YELLOW}XDG-DESKTOP-PORTAL-HYPRLAND${RESET}? (For proper Screen Share, e.g., OBS)" xdph ask_yes_no "-Install ${YELLOW}XDG-DESKTOP-PORTAL-HYPRLAND?${RESET} (For proper Screen Share, e.g., OBS)" xdph
printf "\n" printf "\n"
ask_yes_no "-Install ${YELLOW}zsh${RESET} with ${YELLOW}oh-my-zsh?${RESET}" zsh ask_yes_no "-Install ${YELLOW}zsh${RESET} with ${YELLOW}oh-my-zsh?${RESET}" zsh
if [[ "$zsh" == "Y" ]]; then if [[ "$zsh" == "Y" ]]; then
ask_yes_no "-Add ${YELLOW}Pokemon color scripts${RESET}? in your terminal? (y/n): " pokemon_choice ask_yes_no "-Add ${YELLOW}Pokemon color scripts?${RESET} in your terminal?" pokemon_choice
fi fi
printf "\n" printf "\n"
ask_yes_no "-Installing on ${YELLOW}Asus ROG laptops${RESET}?" rog ask_yes_no "-Installing on ${YELLOW}Asus ROG laptops?${RESET}" rog
printf "\n" printf "\n"
ask_yes_no "-Do you want to add pre-configured ${YELLOW}KooL's Hyprland dotfiles?${RESET}" dots ask_yes_no "-Do you want to add pre-configured ${YELLOW}KooL's Hyprland dotfiles?${RESET}" dots

View File

@@ -9,7 +9,7 @@
###-Configure NVIDIA ###-Configure NVIDIA
nvidia="Y" nvidia="Y"
### Would you like to blacklist nouveau? (y/n) ### Would you like to blacklist nouveau? (y/n)
blacklist_nouveau="Y" nouveau="Y"
### yay or paru ### yay or paru
aur_helper="yay" aur_helper="yay"