Created Screenshots (markdown)

K Lange 2018-11-18 15:45:14 +09:00
parent c25f0f3a4c
commit e138d906c8

16
Screenshots.md Normal file

@ -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)