From d9c4fa521346f4b7267032b5a8b691c5a9137a33 Mon Sep 17 00:00:00 2001 From: eshanized Date: Tue, 31 Dec 2024 05:00:05 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20more=20clear=20and=20ext?= =?UTF-8?q?ended?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../snigdhaos-bootloader-systemd.install | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/snigdhaos-bootloader-systemd/snigdhaos-bootloader-systemd.install b/snigdhaos-bootloader-systemd/snigdhaos-bootloader-systemd.install index 3737c5fc..0002ba31 100644 --- a/snigdhaos-bootloader-systemd/snigdhaos-bootloader-systemd.install +++ b/snigdhaos-bootloader-systemd/snigdhaos-bootloader-systemd.install @@ -1,7 +1,18 @@ -post_install(){ - echo -e "\n All the files has been installed on /etc/pacman.d/hooks/ \n" +post_install() { + echo -e "\n All the files have been installed in /etc/pacman.d/hooks/ \n" + echo -e "Please ensure that the pacman hooks are enabled and configured correctly.\n" + echo -e "Run the following command to check the active pacman hooks:\n" + echo -e " ls -l /etc/pacman.d/hooks/\n" + echo -e "For further documentation, visit: https://snigdhaos.org/docs/hooks\n" } -post_upgrade(){ +post_upgrade() { post_install -} \ No newline at end of file + echo -e "\nUpgrade Notes:\n" + echo -e "If you have customized any configuration files, make sure they are properly merged.\n" + echo -e "You can use the following command to compare and merge configuration changes:\n" + echo -e " pacdiff\n" + echo -e "After merging configurations, it's recommended to run:\n" + echo -e " sudo pacman -Syyu\n" + echo -e "This ensures that all changes are properly applied.\n" +}