This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
autoinstall: | |
version: 1 | |
interactive-sections: | |
- identity | |
- locale | |
- keyboard | |
source: | |
search_drivers: true | |
storage: | |
version: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function generateTierSummary() { | |
const tierList = document.querySelectorAll(".tier-item-details-view"); | |
const output = Array.from(tierList).map((entry)=>{ | |
const title = entry.querySelector(".heading-medium").textContent; | |
const rawPrice = entry.querySelector(".tier-price").textContent.trim(); | |
const price = rawPrice.match(/\d+/)[0]; | |
return `${price} | ${title}` | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dsdt.dsl b/dsdt.dsl | |
index 09358bf..047ef2a 100644 | |
--- a/dsdt.dsl | |
+++ b/dsdt.dsl | |
@@ -26,7 +26,7 @@ DefinitionBlock ("", "DSDT", 1, "LENOVO", "CB-01 ", 0x00000001) | |
External (_SB_.AWAK, MethodObj) // 1 Arguments | |
External (_SB_.CMSO, MethodObj) // 2 Arguments | |
External (_SB_.PCI0.GFX0.VGA_.LCD_, DeviceObj) | |
- External (_SB_.PCI0.GP17.VGA_.AFN7, UnknownObj) | |
+ External (_SB_.PCI0.GP17.VGA_.AFN7, MethodObj) // 1 Arguments |