Skip to content

Commit

Permalink
Add docsify
Browse files Browse the repository at this point in the history
  • Loading branch information
qianlifeng committed May 27, 2024
1 parent dc06d16 commit 262f3c9
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 0 deletions.
Empty file added docs/.nojekyll
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
60 changes: 60 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
Wox
===

[![Build status](https://github.com/Wox-launcher/Wox/actions/workflows/build.yml/badge.svg?branch=v2)](https://github.com/Wox-launcher/Wox/actions)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/Wox-launcher/wox?include_prereleases)](https://github.com/Wox-launcher/Wox/releases)
[![Github All Releases](https://img.shields.io/github/downloads/Wox-launcher/Wox/total.svg)](https://github.com/Wox-launcher/Wox/releases)
[![Crowdin](https://badges.crowdin.net/woxlauncher/localized.svg)](https://crowdin.com/project/woxlauncher)

**Wox** is a cross-platform launcher that simply works. It's an alternative to [Alfred](https://www.alfredapp.com/) and [Launchy](http://www.launchy.net/)


> Wox v2 is under active development, if you use windows, please check v1 release

Features
--------

- Search for applications, folders, files and more
- Plenty of Plugins and Themes
- Single executable file, no installation required
- Develop plugins with Javascript, Python, C#

Run
------------

Download from [releases](https://github.com/Wox-launcher/Wox/releases) and run the single executable file

Usage
-----

- Launch: <kbd>Alt</kbd>/<kbd>Command</kbd>+<kbd>Space</kbd>
- Cancel/Return: <kbd>Esc</kbd>
- Install/Uninstall plugin: type `wpm install/uninstall`

Contribution
------------

- First and most importantly, star it!
- Send PR
- Join [discussions](https://github.com/Wox-launcher/Wox/discussions)

Development
-----------

- Install [just](https://github.com/casey/just)
- Install [Golang SDK](https://go.dev/dl/)
- Install [Nodejs](https://nodejs.org) and [pnpm](https://pnpm.io/)
- Install [Python](https://python.org/downloads) and [pip](https://pip.pypa.io/en/stable/installation/)
- Install [Flutter](https://docs.flutter.dev/get-started/install)
- Run `just dev` to build dependencies and start Wox in development mode

Documentation
-------------

- [Wiki](https://github.com/Wox-launcher/Wox/wiki)

Project Activity
------

![Alt](https://repobeats.axiom.co/api/embed/426a758ebe040d1931da135e5011b6c5c9058041.svg "Repobeats analytics image")
File renamed without changes.
2 changes: 2 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* [Home](/)
* [Plugin](Plugin.md)
30 changes: 30 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>

<script>
window.$docsify = {
loadSidebar: true,
name: "Wox",
repo: "https://github.com/Wox-launcher/Wox",
plugins: [
EditOnGithubPlugin.create("https://github.com/Wox-launcher/Wox/tree/v2/Doc", null,
function(file) {
return "edit on github"
})
]
}
</script>
</body>
</html>

0 comments on commit 262f3c9

Please sign in to comment.