ソースを参照

adding additional notes to setup.sh script questions

Jake Day 6 年 前
コミット
ba59e2eb7f
2 ファイル変更8 行追加2 行削除
  1. 1 0
      README.md
  2. 7 2
      setup.sh

+ 1 - 0
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
 

+ 7 - 2
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