├── DSDT_GUIDE.md ├── EFI ├── BOOT │ ├── .empty │ └── BOOTX64.efi └── CLOVER │ ├── ACPI │ ├── WINDOWS │ │ └── .empty │ ├── origin │ │ └── .empty │ └── patched │ │ ├── .empty │ │ ├── DSDT.aml │ │ ├── SSDT-2-A M I.aml │ │ └── SSDT-6-A M I.aml │ ├── CLOVERX64.efi │ ├── ROM │ └── .empty │ ├── config.plist │ ├── doc │ ├── HowToFixDsdt.txt │ ├── HowToInstallOSX.txt │ ├── UEFI boot with Clover.rtf │ ├── bcfg.txt │ └── boot1f32-install.sh │ ├── drivers │ ├── BIOS │ │ └── ApfsDriverLoader.efi │ └── UEFI │ │ ├── ApfsDriverLoader.efi │ │ ├── AptioMemoryFix.efi │ │ ├── FSInject.efi │ │ ├── HFSPlus.efi │ │ └── VirtualSmc.efi │ ├── kexts │ └── Other │ │ ├── .empty │ │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AirportBrcmFixup │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleALC │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── IntelMausiEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── IntelMausiEthernet │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ ├── Plugins │ │ │ ├── SMCLightSensor.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── SMCLightSensor │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── SMCProcessor.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── SMCProcessor │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── SMCSuperIO.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── SMCSuperIO │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── misc │ └── .empty │ ├── themes │ └── clover-minimal │ │ ├── README.md │ │ ├── background.png │ │ ├── font.png │ │ ├── icons │ │ ├── func_about.png │ │ ├── func_clover.png │ │ ├── func_help.png │ │ ├── func_options.png │ │ ├── func_reset.png │ │ ├── func_shutdown.png │ │ ├── os_apricity.icns │ │ ├── os_arch.icns │ │ ├── os_cougar.icns │ │ ├── os_debian.icns │ │ ├── os_elementary.icns │ │ ├── os_fedora.icns │ │ ├── os_freebsd.icns │ │ ├── os_gentoo.icns │ │ ├── os_kali.icns │ │ ├── os_leo.icns │ │ ├── os_linux.icns │ │ ├── os_linuxmint.icns │ │ ├── os_lion.icns │ │ ├── os_mac.icns │ │ ├── os_mandriva.icns │ │ ├── os_mav.icns │ │ ├── os_opensuse.icns │ │ ├── os_pclinuxos.icns │ │ ├── os_sabayon.icns │ │ ├── os_slackware.icns │ │ ├── os_snow.icns │ │ ├── os_tiger.icns │ │ ├── os_ubuntu.icns │ │ ├── os_unknow.icns │ │ ├── os_unknown.icns │ │ ├── os_vista.icns │ │ ├── os_win.icns │ │ ├── os_win7.icns │ │ ├── os_win8.icns │ │ ├── os_xubuntu.icns │ │ ├── os_yos.icns │ │ ├── pointer.png │ │ ├── tool_shell.png │ │ ├── vol_clover.icns │ │ ├── vol_external.icns │ │ ├── vol_firewire.icns │ │ ├── vol_internal.icns │ │ ├── vol_internal_ext3.icns │ │ ├── vol_internal_hfs.icns │ │ ├── vol_internal_ntfs.icns │ │ └── vol_optical.icns │ │ ├── selection_big.png │ │ ├── selection_small.png │ │ └── theme.plist │ └── tools │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ └── bdmesg.efi └── README.md /DSDT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/DSDT_GUIDE.md -------------------------------------------------------------------------------- /EFI/BOOT/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/WINDOWS/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/ACPI/patched/DSDT.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-2-A M I.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/ACPI/patched/SSDT-2-A M I.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-6-A M I.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/ACPI/patched/SSDT-6-A M I.aml -------------------------------------------------------------------------------- /EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ROM/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/config.plist -------------------------------------------------------------------------------- /EFI/CLOVER/doc/HowToFixDsdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/doc/HowToFixDsdt.txt -------------------------------------------------------------------------------- /EFI/CLOVER/doc/HowToInstallOSX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/doc/HowToInstallOSX.txt -------------------------------------------------------------------------------- /EFI/CLOVER/doc/UEFI boot with Clover.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/doc/UEFI boot with Clover.rtf -------------------------------------------------------------------------------- /EFI/CLOVER/doc/bcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/doc/bcfg.txt -------------------------------------------------------------------------------- /EFI/CLOVER/doc/boot1f32-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/doc/boot1f32-install.sh -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCLightSensor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCLightSensor.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCLightSensor.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCProcessor.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCProcessor.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCSuperIO.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Plugins/SMCSuperIO.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/CLOVER/misc/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/README.md -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/background.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/font.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/func_about.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/func_clover.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/func_help.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/func_options.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/func_reset.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/func_shutdown.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_apricity.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_apricity.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_arch.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_cougar.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_debian.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_debian.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_elementary.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_elementary.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_fedora.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_fedora.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_freebsd.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_gentoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_gentoo.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_kali.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_kali.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_leo.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_linux.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_linuxmint.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_linuxmint.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_lion.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_mac.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_mandriva.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_mandriva.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_mav.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_opensuse.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_opensuse.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_pclinuxos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_pclinuxos.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_sabayon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_sabayon.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_slackware.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_slackware.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_snow.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_tiger.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_unknow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_unknow.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_unknown.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_vista.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_win.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_win7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_win7.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_win8.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_xubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_xubuntu.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/os_yos.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/pointer.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/tool_shell.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_clover.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_external.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_firewire.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_internal.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/icons/vol_optical.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/selection_big.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/selection_small.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/clover-minimal/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/themes/clover-minimal/theme.plist -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspng/gigabyte-z390-m-gaming-clover/HEAD/README.md --------------------------------------------------------------------------------