mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 01:23:14 -06:00
Dark mode for Mkdocs
This commit is contained in:
parent
bf3aab14db
commit
546b631195
5 changed files with 14 additions and 12 deletions
|
@ -80,7 +80,7 @@ Create a pull request if you like to be added, final decision at my discreation.
|
|||
- [@velaar](https://github.com/velaar) for your continual support and contributions.
|
||||
- [@Porco-Rosso](https://github.com/Porco-Rosso) putting up with my requests to test repo changes.
|
||||
- [@MSzturc](https://github.com/MSzturc) for adding my requested features to ThinkpadAssistant.
|
||||
paranoidbashthot and \x for the BIOS mod to unlocked Intel Advance Menu.
|
||||
- paranoidbashthot and \x for the BIOS mod.
|
||||
- [@zhen-zen](https://github.com/zhen-zen) for YogaSMC
|
||||
|
||||
The greatest thank you and appreciation to the [Acidanthera](https://github.com/acidanthera) team.
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
| :----------------------------------- | ------ | ------------------- | ---------------------------- |
|
||||
| Battery Percentage Indication | ✅ | `SSDT-Battery.aml` and `/patches/OpenCore Patches/Battery.plist` |
|
||||
| CPU Power Management (SpeedShift) | ✅ | `XCPM` and `CPUFriend.kext`, generate your own `CPUFriendDataProvider` with [CPUFriendFriend](https://github.com/corpnewt/CPUFriendFriend_) or [one-key-cpufriend](https://github.com/stevezhengshiqi/one-key-cpufriend). |
|
||||
| iGPU Power Management | ✅ | `XCPM`, enabled by `SSDT-PLUG.aml` |
|
||||
| iGPU Power Management | ✅ | `XCPM`, enabled by `SSDT-PM.aml` |
|
||||
| NVMe Drive Battery Management | ✅ | `NVMeFix.kext` | In my experience, NVMe drives will drain more power than SATA drives. |
|
||||
| S3 Sleep/ Hibernation Mode 3 | ✅ | `SSDT-Sleep.aml` | |
|
||||
| Hibernation Mode 25 | ✅ | `RTCMemoryFixup.kext` and `HibernationFixup.kext` | Supported, macOS uses mode 3 by default. Change to mode 25 via `pmset`. |
|
||||
|
|
|
@ -1,12 +1,5 @@
|
|||
# `config.plist`
|
||||
|
||||
<img align="right" src="https://raw.githubusercontent.com/tylernguyen/x1c6-hackintosh/main/docs/assets/img/opencore.png" alt="Critter" width="200">
|
||||
|
||||
Even though I have posted my OpenCore EFI folder here, there are still some work which you have to do before you are able to get it working on your machine. It is **NEVER** a good idea to use someone else's EFI without throughly examining it.
|
||||
|
||||
- See [`docs/3_README-other`](https://github.com/tylernguyen/x1c6-hackintosh/blob/main/docs/3_README-other.md) for more details regarding PlatformInfo settings.
|
||||
- `CPUFriendDataProvider` can be generated with [CPUFriendFriend](https://github.com/corpnewt/CPUFriendFriend_) or [one-key-cpufriend](https://github.com/stevezhengshiqi/one-key-cpufriend). This is especially important if you have a different CPU than mine. Even if you have the same CPU as me, you may prefer a different Energy Performance Preference (EPP) so do generate your own CPUFriendDataProvider.
|
||||
|
||||
## Checking your OpenCore config.plist
|
||||
|
||||
It is important to keep your OpenCore `config.plist` properly up-to-spec, as OpenCore configurations tend to change accordingly with OpenCore versions. A good resource to check your `config.plist` is the `ocvalidate` binary that is bundled with every OpenCore releases.
|
||||
|
|
|
@ -26,7 +26,6 @@ Currently, there is no automatic solution available. For now, I recommend you cr
|
|||
- [dortania/ Getting Started with ACPI](https://dortania.github.io/Getting-Started-With-ACPI/)
|
||||
- [dortania/ opencore `multiboot`](https://dortania.github.io/OpenCore-Multiboot/)
|
||||
- [dortania/ `USB map` guide](https://dortania.github.io/OpenCore-Post-Install/usb/)
|
||||
- [WhateverGreen Intel HD Manual](https://github.com/acidanthera/WhateverGreen/blob/master/Manual/FAQ.IntelHD.en.md)
|
||||
- `Configuration.pdf` and `Differences.pdf` in each `OpenCore` releases.
|
||||
|
||||
!!! tip
|
||||
|
|
14
mkdocs.yml
14
mkdocs.yml
|
@ -14,13 +14,23 @@ nav:
|
|||
- Hardware: Hardware.md
|
||||
- BIOS: BIOS.md
|
||||
- Getting Started: Getting-Started.md
|
||||
- config.plist: config.plist.md
|
||||
- Patches: Patches.md
|
||||
- Post Installation: Post-Installation.md
|
||||
- Issues: Issues.md
|
||||
- Technical Details:
|
||||
- config.plist: config.plist.md
|
||||
- Patches: Patches.md
|
||||
- WhateverGreen Intel HD Manual: https://github.com/acidanthera/WhateverGreen/blob/master/Manual/FAQ.IntelHD.en.md
|
||||
- UEFI Secure Boot: https://osy.gitbook.io/hac-mini-guide/details/secure-boot
|
||||
- Thunderbolt 3 (Part 1): https://osy.gitbook.io/hac-mini-guide/details/thunderbolt-3-fix
|
||||
- Thunderbolt 3 (Part 2): https://osy.gitbook.io/hac-mini-guide/details/thunderbolt-3-fix-part-2
|
||||
- Thunderbolt 3 (Part 3): https://osy.gitbook.io/hac-mini-guide/details/thunderbolt-3-fix-part-3
|
||||
|
||||
theme:
|
||||
name: material
|
||||
palette:
|
||||
scheme: slate
|
||||
primary: red
|
||||
accent: yellow
|
||||
features:
|
||||
- header.autohide
|
||||
- search.highlight
|
||||
|
|
Loading…
Reference in a new issue