diff --git a/pacui b/pacui index d8c3c56..2af4921 100644 --- a/pacui +++ b/pacui @@ -1794,7 +1794,7 @@ function func_c then sudo "${EDITOR:-/usr/bin/nano}" "$file" - echo -e " \e[1;41m Do you want to regenerate the initramfs and update grub.cfg? [y|N] \e[0m" + echo -e " \e[1;41m Do you want to regenerate the initramfs and update /boot/grub/grub.cfg? [y|N] \e[0m" read -r -n 1 -e answer # save user input in "answer" variable (only accept 1 character as input) case ${answer:-n} in # if ENTER is pressed, the variable "answer" is empty. if "answer" is empty, its default value is "n". @@ -1803,7 +1803,7 @@ function func_c ;; * ) - echo -e " \e[1m If /etc/mkinitcpio.conf was edited, please regenerate the initramfs and update your boot loader configuration manually. \e[0m" + echo -e " \e[1m Changes in /etc/mkinitcpio.conf will only be applied after initramfs and boot loader configuration have been regenerated! \e[0m" ;; esac