aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-open
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-03-02 13:10:51 +0000
committerWeblate <noreply@weblate.org>2017-03-02 13:10:51 +0000
commit8365c66b69e221757abb042db0c40a2ca8b9b023 (patch)
treeafa3be8523be7d1b99d07555f6fe06bf8c9013c3 /src-qt5/core/lumina-open
parentTranslated using Weblate (lumina_DESKTOP@lt (generated)) (diff)
parentUpdate the help text for lumina-open to include the "-action <ActionID>" synt... (diff)
downloadlumina-8365c66b69e221757abb042db0c40a2ca8b9b023.tar.gz
lumina-8365c66b69e221757abb042db0c40a2ca8b9b023.tar.bz2
lumina-8365c66b69e221757abb042db0c40a2ca8b9b023.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/lumina-open')
-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