aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-notify/README.md
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-05-18 15:47:16 -0400
committerKen Moore <ken@ixsystems.com>2017-05-18 15:47:16 -0400
commit2aeff150b40e03f55bf2c5c31ccc09e3c0cbfe76 (patch)
treed92a8cc3840fbef113b70c3d4dd0f8c84827f544 /src-qt5/desktop-utils/lumina-notify/README.md
parentAdd the ability to scan/migrate desktop/panel settings from one monitor ID to... (diff)
parentrename readme so github knows its a markdown file (diff)
downloadlumina-2aeff150b40e03f55bf2c5c31ccc09e3c0cbfe76.tar.gz
lumina-2aeff150b40e03f55bf2c5c31ccc09e3c0cbfe76.tar.bz2
lumina-2aeff150b40e03f55bf2c5c31ccc09e3c0cbfe76.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/desktop-utils/lumina-notify/README.md')
-rw-r--r--src-qt5/desktop-utils/lumina-notify/README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-notify/README.md b/src-qt5/desktop-utils/lumina-notify/README.md
new file mode 100644
index 00000000..ea71b0f4
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-notify/README.md
@@ -0,0 +1,33 @@
+### lumina-notify
+
+This is a simple application for launching QDialogs from shell.
+
+Use:
+
+lumina-notify arg1 arg2 arg3 arg4
+
+* arg1 = Message Text
+* arg2 = Button Text (Accept Role)
+* arg3 = Button Text (Reject Role)
+* arg4 = Window Title
+
+For multiple word arguments encapsulate them with "s
+
+***
+Example usage in shell script
+***
+
+~~~~
+#!/bin/csh
+set a=`./lumina-notify "Did Jar Jar do anything wrong?" Yes No "Question"`
+if ($a == 1) then
+set b=`./lumina-notify "Are you sure?" Yes No "Are you Sure?"`
+if ($b == 1) then
+./lumina-notify "Please stop being a hater." Ok Ok "Haters gunna hate"
+else
+set c=`./lumina-notify "Thank you for changing your mind" OK OK "You're Awesome"`
+endif
+else
+./lumina-notify "High Five for Darth Jar Jar" Sure OK "Respect"
+endif`
+~~~~
bgstack15