adding additional notes to setup.sh script questions

This commit is contained in:
Jake Day 2019-04-22 13:39:16 -04:00
parent a3fa626cff
commit ba59e2eb7f
2 changed files with 8 additions and 2 deletions

View file

@ -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). * 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. * 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 ### Support

View file

@ -31,12 +31,13 @@ read -rp "Press enter if this is correct, or CTRL-C to cancel." cont;echo
echo "\nContinuing setup...\n" 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 for dir in $(ls root/); do cp -Rb root/$dir/* /$dir/; done
echo "Making /lib/systemd/system-sleep/sleep executable...\n" echo "Making /lib/systemd/system-sleep/sleep executable...\n"
chmod a+x /lib/systemd/system-sleep/sleep 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 read -rp "Do you want to replace suspend with hibernate? (type yes or no) " usehibernate;echo
if [ "$usehibernate" = "yes" ]; then if [ "$usehibernate" = "yes" ]; then
@ -51,7 +52,9 @@ else
echo "Not touching Suspend\n" echo "Not touching Suspend\n"
fi 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 if [ "$uselibwacom" = "yes" ]; then
echo "Installing patched libwacom packages..." echo "Installing patched libwacom packages..."
@ -61,6 +64,8 @@ else
echo "Not touching libwacom" echo "Not touching libwacom"
fi 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 read -rp "Do you want to remove the example intel xorg config? (type yes or no) " removexorg;echo
if [ "$removexorg" = "yes" ]; then if [ "$removexorg" = "yes" ]; then