diff --git a/Screenshots.md b/Screenshots.md new file mode 100644 index 0000000..1df9d0d --- /dev/null +++ b/Screenshots.md @@ -0,0 +1,16 @@ +To take screenshots within the OS: + +- `Ctrl`+`Super`+`s` takes a screenshot of the entire screen. +- `Ctrl`+`Super`+`w` takes a screenshot of the focused window. + +The screenshot will be saved as a Targa image in `/tmp/screenshot.tga`. Window screenshots will be 32-bit with alpha channel; fullscreen screenshots will be 24-bit with no alpha channel. + +To get screenshots off of the VM and into a more useful format, you can run: + + nc -l 9999 > screenshot.tga; convert screenshot.tga screenshot.png + +... on the host machine, and then on the VM: + + cat /tmp/screenshot.tga > /dev/net/10.0.2.1:9999 + +![](https://i.imgur.com/coW1Mao.png) \ No newline at end of file