mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
01aae98dfe
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Harshavardhan <harshath3018@gmail.com> Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com>
752 B
752 B
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.example.com/}}
- Package a web page with a specific window size:
pake --width {{800}} --height {{600}} {{https://www.example.com/}}
- Package a web page with a custom application name and icon:
pake --name {{application_name}} --icon {{path/to/icon.ico}} {{https://www.example.com/}}
- Package a web page with a non-resizable window:
pake --no-resizable {{https://www.example.com/}}
- Package a web page with fullscreen mode:
pake --fullscreen {{https://www.example.com/}}
- Package a web page with a transparent title bar:
pake --transparent {{https://www.example.com/}}