Skip to content

Commit

Permalink
Change name in cli (#6)
Browse files Browse the repository at this point in the history
* fix: change name of the command in cli.js

* docs: document planned features
  • Loading branch information
kantord authored Feb 20, 2022
1 parent dd63abc commit 49c0aee
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,17 @@
🌱 🎥 Markdown presentations using your webcam



## Planned features

* "Green screen" support
- Blur background
- Use and image as background
- Use different background settings in each slide
* Multi-camera support
- Switch camera with hotkeys
- Associate different cameras/camera angles with different slides
* Virtual webcam support
- Use your presentation as a virtual camera in order to allow working with other software
* Draw on your screen using your fingers
* Share a window from your screen in order to do live demonstrations or live coding
8 changes: 4 additions & 4 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const fs = require('fs-extra')
const pkg = require('./package.json')

const log = (...args) => {
console.log(chalk.green('[mdx-deck]'), ...args)
console.log(chalk.green('[zoetic]'), ...args)
}
log.error = (...args) => {
console.log(chalk.red('[err]'), ...args)
Expand All @@ -18,9 +18,9 @@ const cli = meow(
`
${chalk.gray('Usage')}
$ ${chalk.green('mdx-deck deck.mdx')}
$ ${chalk.green('zoetic deck.mdx')}
$ ${chalk.green('mdx-deck build deck.mdx')}
$ ${chalk.green('zoetic build deck.mdx')}
${chalk.gray('Options')}
Expand All @@ -30,7 +30,7 @@ const cli = meow(
`,
{
description: chalk.green('@mdx-deck/lite ') + chalk.gray(pkg.description),
description: chalk.green('@zoetic/zoetic ') + chalk.gray(pkg.description),
flags: {
port: {
type: 'string',
Expand Down
10 changes: 9 additions & 1 deletion decks/hello.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Hello world!
import { Box } from 'theme-ui'
import { book } from '@mdx-deck/themes'

export const theme = book

# zoetic
### present Markdown slides with your webcam

---

Expand All @@ -11,3 +17,5 @@
* baz

---

<Box bg="tomato">Hello</Box>

0 comments on commit 49c0aee

Please sign in to comment.