The next guide is to replace/upgrade the LDK Game console screen for a bigger one. Thanks to Tbox for this.
Note: There will be a little bit of backlight bleed on the sides but only really noticeable in the dark.
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
@echo off | |
setlocal | |
:: Por @otgo https://github.com/otgo | |
for /f "tokens=2 delims==" %%G in ('wmic os get Caption /value') do ( | |
if not defined VersionDeWindows set VersionDeWindows=%%G | |
) | |
:: Error si no tienes Windows 10 | |
if "x%VersionDeWindows:Windows 10=%" == "x%VersionDeWindows%" ( | |
echo No se detecto que tengas Windows 10 instalado en tu sistema | |
pause |
Visit the new improved script here! Smooth scroll to top of page (Improved!)
If you need a plain JavaScript function to add a smooth scrolling back to the top of the page, you can use this script.
- Add an id of "top" to the
<body>
tag. Like this:<body id="top">
- Add the
onclick
function to the link. Like this:<a href="#top" onclick="scrollToTop(); return false">Back to Top ↑</a>