2025-03-14 21:59:59 -06:00
|
|
|
# pake
|
|
|
|
|
|
|
|
|
|
> Turn any webpage into a desktop app with Rust/Tauri.
|
|
|
|
|
> More information: <https://github.com/tw93/Pake>.
|
|
|
|
|
|
|
|
|
|
- Package a web page:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pake {{https://www.example.com/}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Package a web page with a specific window size:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pake --width {{800}} --height {{600}} {{https://www.example.com/}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Package a web page with a custom application name and icon:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pake --name {{application_name}} --icon {{path/to/icon.ico}} {{https://www.example.com/}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Package a web page with a non-resizable window:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pake --no-resizable {{https://www.example.com/}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Package a web page with fullscreen mode:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pake --fullscreen {{https://www.example.com/}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Package a web page with a transparent title bar:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`pake --transparent {{https://www.example.com/}}`
|