Skip to content

Commit ba59e2e

Browse files
committed
adding additional notes to setup.sh script questions
1 parent a3fa626 commit ba59e2e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ Please consult the [SIGNING.md](SIGNING.md).
132132

133133
* 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).
134134
* Do not install TLP! It can cause slowdowns, laggy performance, and occasional hangs! You have been warned.
135+
* 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/).
135136

136137
### Support
137138

setup.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@ read -rp "Press enter if this is correct, or CTRL-C to cancel." cont;echo
3131

3232
echo "\nContinuing setup...\n"
3333

34-
echo "Coping the config files under root to where they belong...\n"
34+
echo "Copying the config files under root to where they belong...\n"
3535
for dir in $(ls root/); do cp -Rb root/$dir/* /$dir/; done
3636

3737
echo "Making /lib/systemd/system-sleep/sleep executable...\n"
3838
chmod a+x /lib/systemd/system-sleep/sleep
3939

40+
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"
4041
read -rp "Do you want to replace suspend with hibernate? (type yes or no) " usehibernate;echo
4142

4243
if [ "$usehibernate" = "yes" ]; then
@@ -51,7 +52,9 @@ else
5152
echo "Not touching Suspend\n"
5253
fi
5354

54-
read -rp "Do you want use the patched libwacom packages? (type yes or no) " uselibwacom;echo
55+
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"
56+
57+
read -rp "Do you want to install the patched libwacom packages? (type yes or no) " uselibwacom;echo
5558

5659
if [ "$uselibwacom" = "yes" ]; then
5760
echo "Installing patched libwacom packages..."
@@ -61,6 +64,8 @@ else
6164
echo "Not touching libwacom"
6265
fi
6366

67+
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"
68+
6469
read -rp "Do you want to remove the example intel xorg config? (type yes or no) " removexorg;echo
6570

6671
if [ "$removexorg" = "yes" ]; then

0 commit comments

Comments
 (0)