Makefile (466B)
1 .PHONY: demo demo-record demo-redact 2 3 # Record the VHS demo and blur the username in one step. 4 demo: demo-record demo-redact 5 6 # Step 1: Record the raw GIF with VHS (outputs demo-wrds-download-raw.gif). 7 demo-record: 8 vhs demo-wrds-download.tape 9 10 # Step 2: Blur the username on the login screen (raw -> clean). 11 # Override blur coordinates: BLUR_X=500 BLUR_Y=280 make demo-redact 12 demo-redact: 13 ./scripts/redact-demo.sh demo-wrds-download-raw.gif demo-wrds-download.gif