pake: add page (#9822)

* pake: add page

* pake: edit examples

Add a concrete example instead of a generic one.

* pake: remove unnecessary text

Removed the "[options]" generic flag to conform with tldr-pages standards, offering concrete examples instead.

* pake: accept suggestion

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* pake: accept suggestion

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* pake: accept suggestion

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* pake: accept suggestion

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* pake: accept suggestion

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* pake: accept suggestion

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* pake: accept suggestion

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pake: accept suggestion

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pake: accept suggestion

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/3/head
Fernando Fontana 2023-02-04 16:16:01 -03:00 committed by GitHub
parent f96a5a7307
commit d983fd1054
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/common/pake.md Normal file
View File

@ -0,0 +1,28 @@
# pake
> Turn any webpage into a desktop app with Rust/Tauri.
> More information: <https://github.com/tw93/Pake>.
- Package a web page:
`pake {{https://www.google.com/}}`
- Package a web page with a specific window size:
`pake --width {{800}} --height {{600}} {{https://www.google.com/}}`
- Package a web page with a custom application name and icon:
`pake --name {{Google}} --icon {{path/to/icon.ico}} {{https://www.google.com/}}`
- Package a web page with a non-resizable window:
`pake --no-resizable {{https://www.google.com/}}`
- Package a web page with fullscreen mode:
`pake --fullscreen {{https://www.google.com/}}`
- Package a web page with a transparent title bar:
`pake --transparent {{https://www.google.com/}}`