From 4a3468356ff2cd45ba8b988475cfb0d54159cb07 Mon Sep 17 00:00:00 2001 From: funk-on-code <113871227+funk-on-code@users.noreply.github.com> Date: Tue, 27 Sep 2022 07:56:25 +0000 Subject: [PATCH] Re-order Kernel Choice I use -hardened pretty much everywhere, except SMB/Fileservers, which use -lts, so I re-order these. Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com> --- install.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/install.sh b/install.sh index e09808d..e67cbf1 100755 --- a/install.sh +++ b/install.sh @@ -31,20 +31,20 @@ pacman -S --noconfirm curl # Selecting the kernel flavor to install. kernel_selector () { echo "List of kernels:" - echo "1) Stable — Vanilla Linux kernel and modules, with a few patches applied." - echo "2) Hardened — A security-focused Linux kernel." - echo "3) Longterm — Long-term support (LTS) Linux kernel and modules." - echo "4) Zen Kernel — Optimized for desktop usage." + echo "1) Hardened — A security-focused Linux kernel." + echo "2) Longterm — Long-term support (LTS) Linux kernel and modules." + echo "3) Zen Kernel — Optimized for desktop usage." + echo "4) Stable — Vanilla Linux kernel and modules, with a few patches applied." read -r -p "Insert the number of the corresponding kernel: " choice echo "$choice will be installed" case $choice in - 1 ) kernel=linux + 1 ) kernel=linux-hardened ;; - 2 ) kernel=linux-hardened + 2 ) kernel=linux-lts ;; - 3 ) kernel=linux-lts + 3 ) kernel=linux-zen ;; - 4 ) kernel=linux-zen + 4 ) kernel=linux ;; * ) echo "You did not enter a valid selection." kernel_selector