-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Asahi Linux M1 Pro not properly detected #263
Comments
(This is a pretty complicated scenario, but we can try to make this work). Can you provide the output of |
That file has: |
t6000 is the code name of Apple Silicon SOC. You can find the detail here: https://github.com/AsahiLinux/docs/wiki/Codenames Fastfetch uses: switch (code)
{
case 8103: return "Apple M1";
case 6000: return "Apple M1 Pro";
case 6001: return "Apple M1 Max";
case 6002: return "Apple M1 Ultra";
case 8112: return "Apple M2";
case 6020: return "Apple M2 Pro";
case 6021: return "Apple M2 Max";
case 6022: return "Apple M2 Ultra";
case 8122: return "Apple M3";
case 6030: return "Apple M3 Pro";
case 6031:
case 6034: return "Apple M3 Max";
default: return "Apple Silicon";
} |
I've pushed a (bit crappy) fix in branch |
It segfaults 😿 |
|
Seems
|
My bad! I have pushed a fix, what about now? |
Seems |
Yeah, I was not careful with the NULL characters in the file. New patch, can you try again? |
Thanks, this is very useful. I have incorporated a similar (but less efficient) approach. Fastfetch is indeed a nice project! 👌 |
Verbose:
Debug:
The text was updated successfully, but these errors were encountered: