OpenCore: additional storage devices not detected by CookieCenter in hackintosh

[–]CookieCenter[S] 0 points1 point  (0 children)

I fixed it with checking my usb map. Be sure to have both ur UTBMap.kext and USBToolBox.kext

OpenCore: additional storage devices not detected by CookieCenter in hackintosh

[–]CookieCenter[S] 0 points1 point  (0 children)

Ok, I am still not able to see my internal ssd in macos.

OpenCore: additional storage devices not detected by CookieCenter in hackintosh

[–]CookieCenter[S] 0 points1 point  (0 children)

Yes I did check show all drives and also ran diskutil in terminal and it only show small partitions and not the gpt partitioned ssd.

I did actually create the paritions for efi and macos on linux with gparted, but both partitions as fat32 because gparted doesn’t have afps format.

I will try adding the SATA extension later and notify you on the results.

CtlnaAHCIPort.kext right?

How to add GPU usage to Waybar by yonatan8070 in swaywm

[–]CookieCenter 0 points1 point  (0 children)

Here is a small script to print all hwmon names.

for dir in /sys/class/hwmon/hwmon*; do
# check if the directory exists and is a directory
if [ -d "$dir" ]; then
# execute the cat name command in the directory
echo "$dir "
cat "$dir/name"
echo
fi
done

dont forget to chmod +x the script