diff options
-rw-r--r-- | src-qt5/desktop-utils/lumina-fm/README.md | 33 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-mediaplayer/README.md | 20 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-notify/README.md | 7 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-screenshot/README.md | 27 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-textedit/README.md | 38 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-xdg-entry/README.md | 12 |
6 files changed, 137 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/README.md b/src-qt5/desktop-utils/lumina-fm/README.md new file mode 100644 index 00000000..51982f42 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/README.md @@ -0,0 +1,33 @@ +## File Manager for the Lumina Desktop + +This is the "Insight" file manager from the Lumina desktop. + +Key Features: + * ZFS filesystem support for view/rollback of filesystem snapshots + * Simple mediaplayer functionality (play files directly from a directory) + * Simple slideshow functionality (browse through all image files in a directory) + * Bookmark locations on the system for easy-access later. + * Flexible Interface: + * Open additional directories in new tabs + * Each tab may have up to two directories open for side-by-side comparisons. + * "Basic" or "Detailed" file information modes. + * System-wide directories available in a tree-layout on the left side (may be collapsed as desired) + +### Library Dependencies + +1. Qt 5.2+ (specific modules listed below) + * concurrent + * core + * gui + * network + * multimedia + * multimediawidgets + * svg + * widgets +2. Other Libraries + * libc + +## Runtime Dependencies (optional) +* `lumina-archiver`: Allow for instant-extract of an archive into a new subfolder within the current directory +* `lumina-open`: Needed to allow "open-with" functionality for files +* `lumina-fileinfo`: Allows an option to view the properties of files diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/README.md b/src-qt5/desktop-utils/lumina-mediaplayer/README.md new file mode 100644 index 00000000..b080f125 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-mediaplayer/README.md @@ -0,0 +1,20 @@ +## Streaming Media Player for the Lumina Desktop + +This is a media player for local files with an emphasis on supporting web-based streaming services in a modular fashion. + +### Library Dependencies + +1. Qt 5.7+ (specific modules listed below) + * concurrent + * core + * gui + * network + * multimedia + * multimediawidgets + * svg + * widgets +2. Other Libraries + * libc + +## Runtime Dependencies (optional) +* `pianobar`: Allow streaming from the "Pandora" online radio service diff --git a/src-qt5/desktop-utils/lumina-notify/README.md b/src-qt5/desktop-utils/lumina-notify/README.md index ea71b0f4..7a29d608 100644 --- a/src-qt5/desktop-utils/lumina-notify/README.md +++ b/src-qt5/desktop-utils/lumina-notify/README.md @@ -31,3 +31,10 @@ else ./lumina-notify "High Five for Darth Jar Jar" Sure OK "Respect" endif` ~~~~ + +### Library Dependencies + +1. Qt 5.0+ (specific modules listed below) + * core + * gui + * widgets 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 diff --git a/src-qt5/desktop-utils/lumina-textedit/README.md b/src-qt5/desktop-utils/lumina-textedit/README.md new file mode 100644 index 00000000..6597d0fe --- /dev/null +++ b/src-qt5/desktop-utils/lumina-textedit/README.md @@ -0,0 +1,38 @@ +## Plaintext Editor for the Lumina Desktop + +This is a plaintext editor with a number of advanced features: + +Key Features: + * Multiple file support (one file per tab) + * Find/Replace support + * Flexible Interface + * Tabs can be moved to any edge of the window + * Line numbering support + * Line-wrap support + * Change text font/size independently from the file itself + * Colors used for highlighting support can be easily customized + * Syntax Highlighting Support + * Simple JSON file manifest for support rules + * Automatic document settings + * Monospaced fonts on/off + * Character limit per line + * Highlight excess whitespace on the end of lines + * Enable line-wrap by default on/off + +Syntax files: + * File format can be found in the [syntax_support/README.md](https://github.com/trueos/lumina/blob/master/src-qt5/desktop-utils/lumina-textedit/syntax_rules/README.md) file. + * Syntax files are installed in PREFIX/share/lumina-desktop/syntax_rules with a ".syntax" suffix. + * Additional files can be provided/installed by the user within the "~/.config/lumina-desktop/syntax_rules" directory. + +### Library Dependencies + +1. Qt 5.2+ (specific modules listed below) + * concurrent + * core + * gui + * network + * multimedia + * svg + * widgets +2. Other Libraries + * libc diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/README.md b/src-qt5/desktop-utils/lumina-xdg-entry/README.md new file mode 100644 index 00000000..32754215 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-xdg-entry/README.md @@ -0,0 +1,12 @@ +## XDG Desktop Entry Creator for the Lumina Desktop + +This is a simple graphical utility to assist in creating XDG-compliant desktop entries. + +### Library Dependencies + +1. Qt 5.2+ (specific modules listed below) + * core + * gui + * widgets +2. Other Libraries + * libc |