aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-screenshot
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-07-05 12:16:36 -0400
committerKen Moore <ken@ixsystems.com>2017-07-05 12:16:36 -0400
commit0c5959471008a91c00e64cdff16abb91d8569afe (patch)
treeedb0c5d169788fe0e00585813d0679003ada1084 /src-qt5/desktop-utils/lumina-screenshot
parentAdd a README.md to lumina-fileinfo (diff)
downloadlumina-0c5959471008a91c00e64cdff16abb91d8569afe.tar.gz
lumina-0c5959471008a91c00e64cdff16abb91d8569afe.tar.bz2
lumina-0c5959471008a91c00e64cdff16abb91d8569afe.zip
Add a bunch more README.md files for the rest of the lumina desktop-utilities.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-screenshot')
-rw-r--r--src-qt5/desktop-utils/lumina-screenshot/README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-screenshot/README.md b/src-qt5/desktop-utils/lumina-screenshot/README.md
new file mode 100644
index 00000000..eeb1c1e6
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-screenshot/README.md
@@ -0,0 +1,27 @@
+## Screenshot utility for the Lumina Desktop
+
+This is a utility for taking screenshots of the local desktop session and saving them on the system. It also provides some basic editing capabilities prior to saving the screenshot to a file.
+
+### Library Dependencies
+
+1. Qt 5.2+ (specific modules listed below)
+ * concurrent
+ * core
+ * gui
+ * network
+ * multimedia
+ * svg
+ * widgets
+2. X11 Libraries
+ * libXdamage
+3. XCB Libraries
+ * libxcb
+ * libxcb-ewmh
+ * libxcb-icccm
+ * libxcb-image
+ * libxcb-composite
+ * libxcb-damage
+ * libxcb-randr
+ * libxcb-util
+4. Other Libraries
+ * libc
bgstack15