Docs
This commit is contained in:
parent
69debb202c
commit
9d57ba5d25
9 changed files with 235 additions and 19 deletions
33
docs/gui-usage.md
Normal file
33
docs/gui-usage.md
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Warp Pipe GUI Usage
|
||||
|
||||
## Build
|
||||
|
||||
```
|
||||
cmake -S . -B build
|
||||
cmake --build build
|
||||
```
|
||||
|
||||
Disable the GUI target with `-DWARPPIPE_BUILD_GUI=OFF`.
|
||||
|
||||
## Run
|
||||
|
||||
```
|
||||
./build/warppipe-gui
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
The GUI uses `ConnectionOptions::config_path` pointed at Qt's `AppConfigLocation` with `/config.json` appended. On Linux this is typically under `~/.config/Warppipe/config.json`.
|
||||
|
||||
## Command-line options
|
||||
|
||||
- `--screenshot <path>`: capture a PNG screenshot and exit
|
||||
- `--screenshot-delay <ms>`: delay before capture (default 800)
|
||||
- `--debug-screenshot-dir <dir>`: save a timestamped screenshot on every graph update
|
||||
- `--offscreen`: run with `QT_QPA_PLATFORM=offscreen`
|
||||
- `--help`, `--version`
|
||||
|
||||
## Shortcuts
|
||||
|
||||
- `F12`: capture a screenshot to `~/Pictures/warppipe` with a timestamp
|
||||
- `Ctrl+Q`: quit
|
||||
Loading…
Add table
Add a link
Reference in a new issue