From 7026da6e73635ef8b2a523f590dd9c24511281fd Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 22 Feb 2024 01:53:27 -0500 Subject: [PATCH] Another attempt at removing 16k if already installed. --- configure-stormux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure-stormux.sh b/configure-stormux.sh index eb34639..2b732d0 100755 --- a/configure-stormux.sh +++ b/configure-stormux.sh @@ -109,7 +109,7 @@ while [[ "$choice" != "Exit" ]]; do "Configure internet" "Enable Bluetooth" ) - if [[ "$(cat /sys/firmware/devicetree/base/model | cut -f-3 -d ' ')" == "Raspberry Pi 5" ]] && ! [[ "$(pacman -Q linux-rpi-16k &> /dev/null)" ]]; then + if [[ "$(cat /sys/firmware/devicetree/base/model | cut -f-3 -d ' ')" == "Raspberry Pi 5" ]] && [[ "$(pacman -Q linux-rpi-16k &> /dev/null)" -eq 1 ]]; then options+=("Install Raspberry Pi 5 kernel") fi options+=("Install Lxqt Desktop"