From e138d906c8191d6a7661ee1f5188f9698080a621 Mon Sep 17 00:00:00 2001 From: K Lange Date: Sun, 18 Nov 2018 15:45:14 +0900 Subject: [PATCH] Created Screenshots (markdown) --- Screenshots.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Screenshots.md 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