summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ports/neofetch/patches/add-serenity-support.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/Ports/neofetch/patches/add-serenity-support.patch b/Ports/neofetch/patches/add-serenity-support.patch
index b7b64b7c1f..eabe1b21f1 100644
--- a/Ports/neofetch/patches/add-serenity-support.patch
+++ b/Ports/neofetch/patches/add-serenity-support.patch
@@ -110,11 +110,11 @@
;;
+
+ "SerenityOS")
-+ while IFS=":" read -r a b; do
-+ case $a in
-+ "brandstr") cpu="${b//\"}" ;;
-+ esac
-+ done < /proc/cpuinfo
++ # while IFS=":" read -r a b; do
++ # case $a in
++ # "brandstr") cpu="${b//\"}" ;;
++ # esac
++ # done < /proc/cpuinfo
+ # `cpu` will contain "@ [speed]GHz" and to be super correct we
+ # have to cut that off and store it in `speed` only for neofetch
+ # to append it again later - but that's fine for now this way.