-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
857 additions
and
8,786 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { defineConfig } from "vitepress"; | ||
|
||
export default defineConfig({ | ||
outDir: '../../.build/docs', | ||
cacheDir: '../../.build/temp', | ||
cleanUrls: true, | ||
|
||
title: 'QMK WSL', | ||
description: 'A pre-configured WSL distro for working with the QMK CLI', | ||
|
||
head: [['link', { rel: 'icon', href: '/logo.png' }]], | ||
|
||
themeConfig: { | ||
logo: '/logo.png', | ||
sidebar: [ | ||
{ text: 'Getting Started', link: '/guide' }, | ||
{ text: 'Frequently Asked Questions', link: '/faq' }, | ||
{ text: 'Contributing', link: '/dev' }, | ||
], | ||
socialLinks: [ | ||
{ icon: "discord", link: "https://discord.gg/qmk" }, | ||
{ icon: "github", link: "https://github.com/qmk/qmk_distro_wsl" }, | ||
], | ||
footer: { | ||
message: 'This project is maintained by QMK collaborators and contributors like you!' | ||
} | ||
} | ||
}); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
:root { | ||
--vp-button-sponsor-border: transparent; | ||
--vp-button-sponsor-text: var(--vp-c-white); | ||
--vp-button-sponsor-bg: var(--vp-c-yellow-3); | ||
--vp-button-sponsor-hover-border: transparent; | ||
--vp-button-sponsor-hover-text: var(--vp-c-white); | ||
--vp-button-sponsor-hover-bg: var(--vp-c-yellow-2); | ||
--vp-button-sponsor-active-border: transparent; | ||
--vp-button-sponsor-active-text: var(--vp-c-white); | ||
--vp-button-sponsor-active-bg: var(--vp-c-yellow-1); | ||
|
||
--vp-nav-logo-height: 32px; | ||
|
||
--vp-layout-max-width: calc(98% + 64px); | ||
|
||
--vp-sidebar-width: 300px; | ||
} | ||
|
||
.VPDoc.has-aside .content-container { | ||
max-width: unset !important; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import DefaultTheme from 'vitepress/theme' | ||
import './custom.css' | ||
|
||
export default DefaultTheme |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
layout: home | ||
hero: | ||
name: QMK WSL | ||
tagline: A pre-configured WSL distro for working with the QMK CLI | ||
image: | ||
src: /logo.png | ||
actions: | ||
- theme: brand | ||
text: Get Started → | ||
link: /guide | ||
- theme: sponsor | ||
text: Latest Version ↓ | ||
link: https://github.com/qmk/qmk_distro_wsl/releases/latest | ||
--- | ||
|
||
<div align="center"> | ||
|
||
Based on the exact same environment as QMK uses for CI, this installer package aims to give you a QMK build environment with as little effort as possible. | ||
|
||
![terminal example"](/terminal.png) | ||
|
||
Not using Windows? Go directly to the [Tutorial](https://docs.qmk.fm/#/newbs) to get started. | ||
|
||
</div> |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,10 @@ | |
"author": "zvecr <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"vuepress": "^1.9.10" | ||
"vitepress": "^1.2.0" | ||
}, | ||
"scripts": { | ||
"serve": "vuepress dev docs", | ||
"build": "vuepress build docs" | ||
}, | ||
"dependencies": { | ||
"vuepress-theme-default-prefers-color-scheme": "^2.0.0" | ||
"serve": "vitepress dev --host 0.0.0.0 docs", | ||
"build": "vitepress build docs" | ||
} | ||
} |
Oops, something went wrong.