From ba59e2eb7f807bc223045a0d947156dea3921958 Mon Sep 17 00:00:00 2001 From: Jake Day Date: Mon, 22 Apr 2019 13:39:16 -0400 Subject: [PATCH] adding additional notes to setup.sh script questions --- README.md | 1 + setup.sh | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0a9eab547..5040e6945 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,7 @@ Please consult the [SIGNING.md](SIGNING.md). * If you are getting stuck at boot when loading the ramdisk, you need to install the Processor Microcode Firmware for Intel CPUs (usually found under Additional Drivers in Software and Updates). * Do not install TLP! It can cause slowdowns, laggy performance, and occasional hangs! You have been warned. +* If you chose to use hibernate over suspend, please follow the instructions [here](https://fitzcarraldoblog.wordpress.com/2018/07/14/configuring-lubuntu-18-04-to-enable-hibernation-using-a-swap-file/). ### Support diff --git a/setup.sh b/setup.sh index 620f2a37b..fe2fd4eb1 100644 --- a/setup.sh +++ b/setup.sh @@ -31,12 +31,13 @@ read -rp "Press enter if this is correct, or CTRL-C to cancel." cont;echo echo "\nContinuing setup...\n" -echo "Coping the config files under root to where they belong...\n" +echo "Copying the config files under root to where they belong...\n" for dir in $(ls root/); do cp -Rb root/$dir/* /$dir/; done echo "Making /lib/systemd/system-sleep/sleep executable...\n" chmod a+x /lib/systemd/system-sleep/sleep +echo "Suspend is recommended over hibernate. If you chose to use hibernate, please make sure you've setup your swap file per the instructions in the README.\n" read -rp "Do you want to replace suspend with hibernate? (type yes or no) " usehibernate;echo if [ "$usehibernate" = "yes" ]; then @@ -51,7 +52,9 @@ else echo "Not touching Suspend\n" fi -read -rp "Do you want use the patched libwacom packages? (type yes or no) " uselibwacom;echo +echo "Patched libwacom packages are available to better support the pen. If you intend to use the pen, it's recommended that you install them!\n" + +read -rp "Do you want to install the patched libwacom packages? (type yes or no) " uselibwacom;echo if [ "$uselibwacom" = "yes" ]; then echo "Installing patched libwacom packages..." @@ -61,6 +64,8 @@ else echo "Not touching libwacom" fi +echo "This repo comes with example xorg and pulse audio configs. If you chose to keep them, be sure to rename them and uncomment out what you'd like to keep!\n" + read -rp "Do you want to remove the example intel xorg config? (type yes or no) " removexorg;echo if [ "$removexorg" = "yes" ]; then