mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
1d5fcc6e0e
- Split low-color and high-color specifications in palettes. - Split off light, dark, lowlight and lowdark palettes. Lowlight and lowdark will be the low-color base for most subsequent palettes. - Add a small script that makes test pattern requests to pathod.
10 lines
325 B
Bash
Executable File
10 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generate a test pattern with pathoc
|
|
PATHOD=http://localhost:9999
|
|
pathoc localhost:8080 "get:'$PATHOD/p/200:p0,1'"
|
|
pathoc localhost:8080 "get:'$PATHOD/p/300:p0,1'"
|
|
pathoc localhost:8080 "get:'$PATHOD/p/400:p0,1'"
|
|
pathoc localhost:8080 "get:'$PATHOD/p/500:p0,1'"
|
|
pathoc localhost:8080 "get:'$PATHOD/p/600:p0,1'"
|