diff --git a/README.md b/README.md index 5949dc3..c4821e5 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This example combines Qt6 GUI (C++) with WGPU rendering (Rust). It doesn’t do Currently only X11 (XCB) is supported but it should be easy to extend to other platforms. +![Screenshot](screenshot.png) + ## Usage This program is intended as a starting point rather than a dependency, so just copy it. diff --git a/init.sh b/init.sh index 6fe9b04..a25cdcb 100755 --- a/init.sh +++ b/init.sh @@ -56,6 +56,7 @@ git rm -r skel-test # replace the README with a stub echo "# $name" >| README.md +git rm screenshot.png # escape HTML special characters (&, <, and >), but also sed special characters (& again, \, and /) htmlname=$(echo -n "$name" | sed 's/&/\&/g; s//\>/g; s:[\\/&]:\\&:g') diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..f47df3c Binary files /dev/null and b/screenshot.png differ