mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
Inital import
This commit is contained in:
BIN
.vuepress/.config.js.swp
Normal file
BIN
.vuepress/.config.js.swp
Normal file
Binary file not shown.
15
.vuepress/components/Foo/Bar.vue
Executable file
15
.vuepress/components/Foo/Bar.vue
Executable file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<p class="demo">
|
||||
{{ msg }}
|
||||
</p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
msg: 'Hello this is <Foo-Bar>'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
3
.vuepress/components/OtherComponent.vue
Executable file
3
.vuepress/components/OtherComponent.vue
Executable file
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<p class="demo">This is another component</p>
|
||||
</template>
|
||||
15
.vuepress/components/demo-component.vue
Executable file
15
.vuepress/components/demo-component.vue
Executable file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<p class="demo">
|
||||
{{ msg }}
|
||||
</p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: 'Hello this is <demo-component>'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
275
.vuepress/config.js
Executable file
275
.vuepress/config.js
Executable file
@@ -0,0 +1,275 @@
|
||||
const {
|
||||
description
|
||||
} = require('../package')
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Ref:https://v1.vuepress.vuejs.org/config/#title
|
||||
*/
|
||||
title: 'Getting Started With ACPI',
|
||||
/**
|
||||
* Ref:https://v1.vuepress.vuejs.org/config/#description
|
||||
*/
|
||||
description: description,
|
||||
|
||||
/**
|
||||
* Extra tags to be injected to the page HTML `<head>`
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/config/#head
|
||||
*/
|
||||
head: [
|
||||
['meta', {
|
||||
name: 'theme-color',
|
||||
content: '#3eaf7c'
|
||||
}],
|
||||
['meta', {
|
||||
name: 'apple-mobile-web-app-capable',
|
||||
content: 'yes'
|
||||
}],
|
||||
['meta', {
|
||||
name: 'apple-mobile-web-app-status-bar-style',
|
||||
content: 'black'
|
||||
}],
|
||||
["link", {
|
||||
rel: "'stylesheet",
|
||||
href: "/styles/website.css"
|
||||
},]
|
||||
],
|
||||
base: '/Getting-Started-With-ACPI/',
|
||||
|
||||
markdown: {
|
||||
extendMarkdown: md => {
|
||||
md.use(require('markdown-it-multimd-table'))
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Theme configuration, here is the default theme configuration for VuePress.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/theme/default-theme-config.html
|
||||
*/
|
||||
theme: 'vuepress-theme-succinct',
|
||||
globalUIComponents: [
|
||||
'ThemeManager'
|
||||
],
|
||||
|
||||
themeConfig: {
|
||||
lastUpdated: true,
|
||||
repo: 'https://github.com/dortania/Getting-Started-With-ACPI',
|
||||
editLinks: false,
|
||||
docsDir: '',
|
||||
editLinkText: '',
|
||||
logo: '/homepage.png',
|
||||
nav: [{
|
||||
text: 'Dortania Guides',
|
||||
ariaLabel: 'Language Menu',
|
||||
items: [{
|
||||
text: 'Home Site',
|
||||
link: 'https://dortania.github.io/'
|
||||
},
|
||||
{
|
||||
text: 'OpenCore Install Guide',
|
||||
link: 'https://dortania.github.io/OpenCore-Desktop-Guide/'
|
||||
},
|
||||
{
|
||||
text: 'OpenCore Post-Install',
|
||||
link: 'https://dortania.github.io/OpenCore-Post-Install/'
|
||||
},
|
||||
{
|
||||
text: 'Wireless Buyers Guide',
|
||||
link: 'https://dortania.github.io/Wireless-Buyers-Guide/'
|
||||
},
|
||||
{
|
||||
text: 'GPU Buyers Guide',
|
||||
link: 'https://dortania.github.io/GPU-Buyers-Guide/'
|
||||
},
|
||||
{
|
||||
text: 'Anti Buyers Guide',
|
||||
link: 'https://dortania.github.io/Anti-Hackintosh-Buyers-Guide/'
|
||||
},
|
||||
]
|
||||
},
|
||||
/*
|
||||
{
|
||||
text: 'Github',
|
||||
link: 'https://github.com/dortania/OpenCore-Desktop-Guide'
|
||||
}
|
||||
*/
|
||||
],
|
||||
sidebar: [{
|
||||
title: 'Introduction',
|
||||
collapsable: false,
|
||||
sidebarDepth: 1,
|
||||
children: [
|
||||
['', 'Getting Started With ACPI'],
|
||||
['ssdt-platform', 'Choosing the SSDTs'],
|
||||
]
|
||||
|
||||
},
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: false,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
'/ssdt-methods/ssdt-methods',
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: false,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
'/ssdt-methods/ssdt-prebuilt',
|
||||
'/ssdt-methods/ssdt-easy',
|
||||
'/ssdt-methods/ssdt-long',
|
||||
]
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Manual',
|
||||
collapsable: false,
|
||||
sidebarDepth: 1,
|
||||
children: [
|
||||
'/Manual/dump',
|
||||
'/Manual/compile',
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Desktop',
|
||||
collapsable: false,
|
||||
sidebarDepth: 1,
|
||||
children: [
|
||||
['/Desktops/desktop-disable', 'Disabling desktop dGPUs'],
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Laptop',
|
||||
collapsable: false,
|
||||
sidebarDepth: 0,
|
||||
children: [
|
||||
['/Laptops/backlight', 'Fixing Backlight'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Laptops/backlight-methods/prebuilt', 'Prebuilt'],
|
||||
['/Laptops/backlight-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Laptops/trackpad', 'Fixing Trackpad'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Laptops/trackpad-methods/prebuilt', 'Prebuilt'],
|
||||
['/Laptops/trackpad-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Laptops/laptop-disable', 'Disabling laptop dGPUs'],
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Universal',
|
||||
collapsable: false,
|
||||
sidebarDepth: 0,
|
||||
children: [
|
||||
['/Universal/ec-fix', 'Embedded Controller'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Universal/ec-methods/prebuilt', 'Prebuilt'],
|
||||
['/Universal/ec-methods/ssdttime', 'SSDTTime'],
|
||||
['/Universal/ec-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Universal/plug', 'CPU Power Management'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Universal/plug-methods/prebuilt', 'Prebuilt'],
|
||||
['/Universal/plug-methods/ssdttime', 'SSDTTime'],
|
||||
['/Universal/plug-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Universal/awac', 'AWAC vs RTC'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Universal/awac-methods/prebuilt', 'Prebuilt'],
|
||||
['/Universal/awac-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Universal/nvram', 'NVRAM PMC'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Universal/nvram-methods/prebuilt', 'Prebuilt'],
|
||||
['/Universal/nvram-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Universal/rhub', 'USB RHUB'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Universal/rhub-methods/prebuilt', 'Prebuilt'],
|
||||
['/Universal/rhub-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Universal/smbus', 'Fixing SMBus Support'],
|
||||
{
|
||||
title: 'Methods',
|
||||
collapsable: true,
|
||||
sidebarDepth: 2,
|
||||
children: [
|
||||
['/Universal/smbus-methods/manual', 'Manual'],
|
||||
]
|
||||
},
|
||||
['/Universal/irq', 'IRQ Fix'],
|
||||
['/Universal/spoof', 'GPU Spoof'],
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Cleanup',
|
||||
collapsable: false,
|
||||
sidebarDepth: 1,
|
||||
children: [
|
||||
['cleanup', 'Cleanup'],
|
||||
]
|
||||
},
|
||||
{
|
||||
title: 'Misc',
|
||||
collapsable: false,
|
||||
sidebarDepth: 1,
|
||||
children: [
|
||||
['troubleshooting', 'Troubleshooting'],
|
||||
['CONTRIBUTING', 'Contributing'],
|
||||
]
|
||||
},
|
||||
],
|
||||
},
|
||||
/**
|
||||
* Apply plugins,ref:https://v1.vuepress.vuejs.org/zh/plugin/
|
||||
*/
|
||||
plugins: [
|
||||
'@vuepress/plugin-back-to-top',
|
||||
'vuepress-plugin-smooth-scroll',
|
||||
['vuepress-plugin-medium-zoom',
|
||||
{
|
||||
selector: "img",
|
||||
options: {
|
||||
background: 'var(--bodyBgColor)'
|
||||
}
|
||||
}],
|
||||
]
|
||||
}
|
||||
14
.vuepress/enhanceApp.js
Executable file
14
.vuepress/enhanceApp.js
Executable file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Client app enhancement file.
|
||||
*
|
||||
* https://v1.vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements
|
||||
*/
|
||||
|
||||
export default ({
|
||||
Vue, // the version of Vue being used in the VuePress app
|
||||
options, // the options for the root Vue instance
|
||||
router, // the router instance for the app
|
||||
siteData // site metadata
|
||||
}) => {
|
||||
// ...apply enhancements for the site.
|
||||
}
|
||||
BIN
.vuepress/public/acpi-logo.png
Normal file
BIN
.vuepress/public/acpi-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
BIN
.vuepress/public/apple-touch-icon-precomposed-152.png
Normal file
BIN
.vuepress/public/apple-touch-icon-precomposed-152.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
BIN
.vuepress/public/dortania-logo-clear.png
Normal file
BIN
.vuepress/public/dortania-logo-clear.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
BIN
.vuepress/public/favicon.ico
Normal file
BIN
.vuepress/public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
BIN
.vuepress/public/homepage.png
Normal file
BIN
.vuepress/public/homepage.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
70
.vuepress/styles/index.styl
Executable file
70
.vuepress/styles/index.styl
Executable file
@@ -0,0 +1,70 @@
|
||||
/**
|
||||
* Custom Styles here.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/config/#index-styl
|
||||
*/
|
||||
|
||||
[data-theme='light']
|
||||
--sideBgColor $sideBgColor
|
||||
|
||||
[data-theme='dark']
|
||||
--sideBgColor $sideBgColorDark
|
||||
--bgColor $bgColor
|
||||
|
||||
.home .hero img
|
||||
max-width 450px!important
|
||||
|
||||
// [data-theme='light']
|
||||
// display none
|
||||
|
||||
|
||||
// .home .hero img
|
||||
// max-width 450px!important
|
||||
/**
|
||||
html
|
||||
body
|
||||
background-color var(--bgColor)
|
||||
|
||||
.theme-default-content:not(.custom)
|
||||
max-width 1000px
|
||||
|
||||
.navbar
|
||||
.links
|
||||
background-color var(--navBgColorDark)!important
|
||||
|
||||
.navbar
|
||||
filter: drop-shadow(0px 1px 1px var(--bgColor));
|
||||
|
||||
*/
|
||||
|
||||
.navbar
|
||||
filter: drop-shadow(0px 1px 1px var(--bgColor));
|
||||
|
||||
.sidebar
|
||||
background-color var(--sideBgColor)
|
||||
|
||||
div[class*="language-"]
|
||||
pre, pre[class*="language-"]
|
||||
margin-top 0
|
||||
|
||||
html {
|
||||
overflow: scroll;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 0px;
|
||||
background: transparent; /* make scrollbar transparent */
|
||||
}
|
||||
|
||||
tr
|
||||
&:nth-child(1n)
|
||||
background-color var(--bodyBgColor)
|
||||
&:nth-child(2n)
|
||||
background-color var(--sideBgColor)
|
||||
|
||||
|
||||
|
||||
.dropdown-wrapper .nav-dropdown
|
||||
border: 1px solid var(--sideBgColor)!important
|
||||
background-color var(--sideBgColor)!important
|
||||
box-shadow: 0px 0px 2px var(--bodyBgColor)
|
||||
right: -12%!important
|
||||
40
.vuepress/styles/palette.styl
Executable file
40
.vuepress/styles/palette.styl
Executable file
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* Custom palette here.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/zh/config/#palette-styl
|
||||
*/
|
||||
|
||||
$bodyFontSize = 16px
|
||||
$fallbackTheme = 'dark'
|
||||
|
||||
// Light Theme
|
||||
$accentColor = #00bfff
|
||||
$textColor = #2c3e50
|
||||
$bodyBgColor = #fff
|
||||
$sideBgColor = #fff
|
||||
$badgeTipColor = #e3f8ff
|
||||
|
||||
// Dark Theme
|
||||
|
||||
$accentColorDark = #30BCD5
|
||||
$textColorDark = #ccc
|
||||
$bodyBgColorDark = #2d3033
|
||||
$sideBgColorDark = #363b40
|
||||
$badgeTipColorDark = #023e52
|
||||
|
||||
/**
|
||||
|
||||
//$textColor = #2c3e50
|
||||
$borderColor = #363b40
|
||||
//$borderColor = #eaecef
|
||||
$codeBgColor = #282c34
|
||||
|
||||
$bgColor = #2d3033
|
||||
$navBgColor = #363b40
|
||||
|
||||
$bgColorDark = #2d3033
|
||||
$navBgColorDark = #363b40
|
||||
$sideBgColorDark = #363b40
|
||||
*/
|
||||
|
||||
$bgColor = #111112
|
||||
Reference in New Issue
Block a user