aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-03-02 08:09:44 -0500
committerKen Moore <ken@ixsystems.com>2017-03-02 08:09:44 -0500
commit776b9ac862fca18b341932a43e0f5903c8582017 (patch)
tree8bdad20916db13e84295333ad2ca06b9bc55566e /src-qt5/core
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-776b9ac862fca18b341932a43e0f5903c8582017.tar.gz
lumina-776b9ac862fca18b341932a43e0f5903c8582017.tar.bz2
lumina-776b9ac862fca18b341932a43e0f5903c8582017.zip
Update the help text for lumina-open to include the "-action <ActionID>" syntax. This is the syntax used for launching one of the alternate .desktop file actions.
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/lumina-open/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-open/main.cpp b/src-qt5/core/lumina-open/main.cpp
index 13213fa1..59cb05d9 100644
--- a/src-qt5/core/lumina-open/main.cpp
+++ b/src-qt5/core/lumina-open/main.cpp
@@ -32,9 +32,10 @@
void printUsageInfo(){
qDebug() << "lumina-open: Application launcher for the Lumina Desktop Environment";
qDebug() << "Description: Given a file (with absolute path) or URL, this utility will try to find the appropriate application with which to open the file. If the file is a *.desktop application shortcut, it will just start the application appropriately. It can also perform a few specific system operations if given special flags.";
- qDebug() << "Usage: lumina-open [-select] <absolute file path or URL>";
+ qDebug() << "Usage: lumina-open [-select] <absolute file path or URL> [-action <ActionID>]";
qDebug() << " lumina-open [-volumeup, -volumedown, -brightnessup, -brightnessdown]";
qDebug() << " [-select] (optional) flag to bypass any default application settings and show the application selector window";
+ qDebug() << " [-action <ActionID>] (optional) Flag to run one of the alternate Actions listed in a .desktop registration file rather than the main command.";
qDebug() << "Special Flags:";
qDebug() << " \"-volume[up/down]\" Flag to increase/decrease audio volume by 5%";
qDebug() << " \"-brightness[up/down]\" Flag to increase/decrease screen brightness by 5%";
bgstack15