UNPKG

wintt

Version:

A cli for Windows Terminal

71 lines (61 loc) 3.48 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>wtt</title> <link rel="stylesheet" type="text/css" href="styles/index.css"> <link rel="shortcut icon" href="./public/wtt.ico" type="image/x-icon"> <!-- <script src="https://cdn.jsdelivr.net/npm/less@4"></script> --> </head> <body> <script src="modules/anime.js" type="text/javascript"></script> <script src="https://unpkg.com/typewriter-effect@latest/dist/core.js" type="text/javscript"></script> <script src="javascript/utils.js" type="text/javascript"></script> <script src="javascript/global.var.js" type="text/javascript"></script> <!-- End import, start page --> <noscript style="width: 100vw; height: 20vh; background-color: #ff4757; display: flex; justify-content: center; align-items: center; font-size: 3vmax;">This site will not be fully functional without JavaScript enabled!</noscript> <header> </header> <div class="fs" order="1"> <h1><b>Supercharge</b> your Windows Terminal configuration file.</h1> <h2>npx wintt <span id="command"></span></h2> <div class="terminal" id="terminal"> <!-- This will be controlled in JavaScript since it needs to be dynamically updated (provide simulated command output) --> </div> </div> <div class="fs" order="2" type="info"> <h1 cursor="true">Abstract</h1> <p>wtt is a command line interface written in Node.js to add more utility to the Windows Terminal application such as theme <i>installing</i>, <i>configuration file backups</i>, and more to come in the future.</p> <img src="assets/images/abstract.img.svg" alt="abstract.img.svg" draggable="false"> </div> <div class="fs" order="3" type="info"> <h1 cursor="true">Themes</h1> <p>wtt supports theme installs by using the <a href="https://github.com/atomcorp/themes">atomcorp/themes</a> repository.</p> <img src="assets/images/themes.img.svg" alt="themes.img.svg" draggable="false"> </div> <footer> <img src="assets/wtt_banner.png" alt="wtt_banner.png" draggable="false"> <div class="footer__text"> <p>Made with 💗 from <a href="https://github.com/rainwashed">RainWashed</a></p> <p>Current release version: <span id="wtt_version"></span></p> <p>Current site release version: <span id="site_version"></span></p> </div> <div class="footer__icons"> <a href="https://github.com/rainwashed/wtt"> <img src="assets/icon/github_icon.svg" alt="github_icon.svg" title="View the source code"> </a> <a href="https://github.com/rainwashed/wtt/blob/main/README.md"> <img src="assets/icon/markdown_icon.svg" alt="markdown_icon.svg" title="Read the README.md"> </a> <a href="https://github.com/rainwashed/wtt/blob/main/LICENSE"> <img src="assets/icon/gnu-gpl.svg" alt="gnu-gp.svg" title="Read the LICENSE file"> </a> </div> </footer> <!-- End page, start scripts --> <script src="javascript/runatstart.js" type="text/javascript"></script> <script src="javascript/command.js" type="text/javascript"></script> </body> </html>