aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils')
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/lumina-archiver.862
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-calculator/lumina-calculator.829
-rw-r--r--src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.831
-rw-r--r--src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-fm/lumina-fm.862
-rw-r--r--src-qt5/desktop-utils/lumina-fm/lumina-fm.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.857
-rw-r--r--src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro9
-rw-r--r--src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.829
-rw-r--r--src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/lumina-textedit.826
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro5
-rw-r--r--src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.820
-rw-r--r--src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro5
16 files changed, 350 insertions, 10 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8
new file mode 100644
index 00000000..02bc6d1a
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8
@@ -0,0 +1,62 @@
+.Dd November 2, 2017
+.Dt LUMINA-ARCHIVER 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-archiver
+.Nd a graphical front-end to tar.
+Manages and creates archives.
+
+.Sh SYNOPSIS
+.Nm
+.Op Fl -burn-img Ar FILE
+.Op Fl -ax Ar FILE
+.Op Fl -aa Ar NEW_ARCHIVE Ar FILES
+.Op Fl -sx Ar ARCHIVE Ar EXTRACT_PATH
+
+.Sh DESCRIPTION
+.Nm
+is a graphical front end to the tar utility.
+.Nm
+includes limited support for copying USB images to a USB device.
+This uses the dd utility.
+.Nm
+requires two runtime utilities: tar and dd.
+The tar utility is used for the backend archive control system.
+The dd utility is used to copy an image file ("*.img") to a USB device.
+.Pp
+Arguments for
+.Nm
+include:
+.Bl -tag -width indent
+.It Ic --burn-img
+This launches the burn dialog when lumina-archiver loads.
+.It Ic --ax
+This auto-extracts a file into a new directory with the same name as
+the given file.
+.It Ic --aa
+Auto extracts files into a new archive the user designates.
+.It Ic --sx
+Designate an archive and path to place extracted files.
+.El
+
+.Sh EXAMPLES
+.Pp
+.Dl % lumina-archiver --burn-img ./TrueOS-2017-07-05-x64-USB.img
+Opens the burn dialog for TrueOS-2017-07-05-x64-USB.img.
+.Pp
+.Dl % lumina-archiver --ax ./lumina-master.zip
+Auto-extracts lumina-master.zip into a directory called lumina-master.
+
+.Sh FILES
+.Bl -tag -width indent
+.It Pa /usr/local/bin/lumina-archiver
+.El
+
+.Sh SEE ALSO
+.Xr dd(1),
+.Xr tar(1)
+
+.Sh AUTHORS
+.An Aaron St. John and Tim Moore
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro
index fce76e30..442aab1e 100644
--- a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro
+++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro
@@ -95,7 +95,10 @@ desktop.path=$${L_SHAREDIR}/applications/
#link.path=$${L_BINDIR}
#link.extra=ln -sf lumina-archiver $(INSTALL_ROOT)$${L_BINDIR}/lpac
-INSTALLS += target desktop
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-archiver.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-archiver.8.gz"
+
+INSTALLS += target desktop manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8
new file mode 100644
index 00000000..f01ba5db
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8
@@ -0,0 +1,29 @@
+.Dd October 30, 2017
+.Dt LUMINA-CALCULATOR 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-calculator
+.Nd full scientific calculator with a simple interface.
+
+.Sh SYNOPSIS
+.Nm
+
+.Sh DESCRIPTION
+.Nm
+is a simple scientific calculator interface.
+It has exponential, trigonometric, and
+logarithmic functions.
+It can also calculate percentages, square roots, and hyperbolic
+trigonometric functions.
+The utility keeps a history of previous calculations.
+This history can be saved as a .txt file.
+
+.Sh FILES
+.Bl -tag -width indent
+.It Pa /usr/local/bin/lumina-calculator
+.El
+
+.Sh AUTHORS
+.An Aaron St. John and Tim Moore
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro
index 4560305b..84dc307a 100644
--- a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro
+++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro
@@ -89,7 +89,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO
desktop.files=lumina-calculator.desktop
desktop.path=$${L_SHAREDIR}/applications/
-INSTALLS += target desktop
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-calculator.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-calculator.8.gz"
+
+INSTALLS += target desktop manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8
new file mode 100644
index 00000000..b2d0f354
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8
@@ -0,0 +1,31 @@
+.Dd November 13, 2017
+.Dt LUMINA-FILEINFO 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-fileinfo
+.Nd views properties of files.
+Includes creator for XDG application registrations and XDG-compliant
+desktop entries.
+
+.Sh SYNOPSIS
+.Nm
+
+.Sh DESCRIPTION
+.Nm
+displays a graphical utility to create XDG-compliant desktop entries.
+.Nm
+also views file properties.
+It shows properties including: type, mimetype, file size, owner,
+group, permissions, date created, and date of last modification.
+
+
+.Sh EXAMPLES
+.Bl -tag -width indent
+.It lumina-fileinfo /usr/home/aaron/Downloads/Testing.png
+Opens the utility and shows detailed information about Testing.png
+.El
+
+.Sh AUTHORS
+.An Aaron St. John and Tim Moore
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro
index 14345f50..a90287b4 100644
--- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro
+++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro
@@ -94,7 +94,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO
desktop.files=lumina-fileinfo.desktop
desktop.path=$${L_SHAREDIR}/applications/
-INSTALLS += target desktop
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-fileinfo.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-fileinfo.8.gz"
+
+INSTALLS += target desktop manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 b/src-qt5/desktop-utils/lumina-fm/lumina-fm.8
new file mode 100644
index 00000000..8cce5435
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.8
@@ -0,0 +1,62 @@
+.Dd November 2, 2017
+.Dt LUMINA-FM 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-fm
+.Nd is a utility used for browsing and interacting with files
+on the system.
+
+.Sh SYNOPSIS
+.Nm
+.Op Fl new-instance
+.Op Ar FILE
+
+.Sh DESCRIPTION
+.Nm
+is the CLI command to open Insight File Manager.
+The file manager interface maintains files stored on the system.
+.Nm
+can take an optional argument and file path.
+If no argument or file path is specified, the command opens the
+Insight File Manager in the home directory.
+Specifying a file path while the interface is open creates a new tab in
+the existing window.
+.Pp
+.Bl -tag -width indent
+.It Ic -new-instance
+Opens Insight File Manager in a new window.
+.El
+
+.Sh EXAMPLES
+.Pp
+.Dl % lumina-fm -new-instance /usr/bin/etc
+Opens Insight in a new window pointed to the specified directory.
+.Pp
+.Dl % lumina-fm /usr/etc/bin
+Opens the specified directory with the file manager.
+If Insight is already open, a second tab is created.
+
+.Sh OPTIONAL RUNTIME DEPENDENCIES
+If other lumina utilities are installed more options are available.
+The following are optional for
+.Nm
+.Pp
+.Bl -tag -width indent
+.It Ic lumina-archiver
+Gives the option to instantaneously extract an
+archive into a new subfolder within the current directory.
+.It Ic lumina-open
+Gives the option to "open-with".
+.It Ic lumina-fileinfo
+Provides an option to view the properties of files.
+.El
+
+.Sh FILES
+.Bl -tag -width indent
+.It Pa /usr/local/bin/lumina-fm
+.El
+
+.Sh AUTHORS
+.An Aaron St. John and Tim Moore
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
index 349f84c5..98afed4f 100644
--- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
+++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro
@@ -131,7 +131,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO
desktop.files=lumina-fm.desktop
desktop.path=$${L_SHAREDIR}/applications/
-INSTALLS += target desktop icons
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-fm.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-fm.8.gz"
+
+INSTALLS += target desktop icons manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8
new file mode 100644
index 00000000..9db08575
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8
@@ -0,0 +1,57 @@
+.Dd November 2, 2017
+.Dt LUMINA-MEDIAPLAYER 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-mediaplayer
+.Nd a graphical utility to play media files and stream online radio
+services.
+
+.Sh SYNOPSIS
+.Nm
+.Op Fl -pandora
+.Op Ar FILES
+
+
+.Sh DESCRIPTION
+.Nm
+opens the graphical interface for the media player.
+The user can sync a Pandora account and stream music.
+The user can also create and manage a playlist of media files.
+.Pp
+Listing multiple files opens them in a playlist.
+It can open .mp3, .mp4, .flac, .acc, .mpeg2, and mpeg4 files.
+The user can use the command line to add songs by listing media file names.
+.Pp
+.Nm
+has one optional argument:
+.Bl -tag -width indent
+.It Ic --pandora
+Opens the interface on the Pandora account page.
+.El
+
+.Sh EXAMPLES
+.Pp
+.Dl % lumina-mediaplayer Downloads/Testing.mp3
+Opens the interface and adds Testing.mp3 into the playlist.
+.Dl % lumina-mediaplayer Downloads/Testing.mp3 Testing2.mp4
+Opens the interface and adds Testing.mp3 and Testing2.mp4 into the
+playlist.
+
+.Sh OPTIONAL RUNTIME DEPENDENCIES
+Installing other utilities can make more options available.
+These extra utilities are supported:
+.Pp
+.Bl -tag -width indent
+.It Ic pianobar
+This provides streaming from the Pandora online radio service.
+.El
+
+.Sh FILES
+.Bl -tag -width indent
+.It Pa /usr/local/bin/lumina-mediaplayer
+.El
+
+.Sh AUTHORS
+.An Aaron St. John and Tim Moore
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro
index d117cb01..81174120 100644
--- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro
+++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro
@@ -95,10 +95,13 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO
desktop.files=lumina-mediaplayer.desktop
desktop.path=$${L_SHAREDIR}/applications/
-link.path=$${L_BINDIR}
-link.extra=ln -sf lumina-mediaplayer $(INSTALL_ROOT)$${L_BINDIR}/lplay
+#link.path=$${L_BINDIR}
+#link.extra=ln -sf lumina-mediaplayer $(INSTALL_ROOT)$${L_BINDIR}/lplay
-INSTALLS += target desktop
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-mediaplayer.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-mediaplayer.8.gz"
+
+INSTALLS += target desktop manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8
new file mode 100644
index 00000000..36065790
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8
@@ -0,0 +1,29 @@
+.Dd November 2, 2017
+.Dt LUMINA-SCREENSHOT 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-screenshot
+.Nd a utility to take and save screenshots of the desktop.
+
+.Sh SYNOPSIS
+.Nm
+
+.Sh DESCRIPTION
+.Nm
+opens the graphical utility and takes a screenshot.
+Then, it can view, crop, zoom, and save the screenshot.
+There is also an option to open the screenshot with a different
+application.
+There are options to capture the entire session, a single
+screen, a single window, or a selected area.
+By default, the utility is bound to the "PrintScreen" keyboard button.
+
+.Sh FILES
+.Bl -tag -width indent
+.It Pa /usr/local/bin/lumina-screenshot
+.El
+
+.Sh AUTHORS
+.An Aaron St. John and Tim Moore
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro
index 02b6eaa6..64d8f2d8 100644
--- a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro
+++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro
@@ -95,7 +95,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO
desktop.files=lumina-screenshot.desktop
desktop.path=$${L_SHAREDIR}/applications/
-INSTALLS += target desktop
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-screenshot.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-screenshot.8.gz"
+
+INSTALLS += target desktop manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8
new file mode 100644
index 00000000..df5b55d0
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8
@@ -0,0 +1,26 @@
+.Dd November 7, 2017
+.Dt LUMINA-TEXTEDIT 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-textedit
+.Nd plaintext editor.
+
+.Sh SYNOPSIS
+.Nm
+.Op Ar NEW_FILE | EXISTING_FILE
+
+.Sh DESCRIPTION
+The
+.Nm
+is a plaintext editor with syntax highlighting, tabs, and find/replace functionality.
+The user can specify either a new file name or an existing file name.
+
+.Sh EXAMPLES
+.Pp
+.Dl % lumina-textedit Testing_file.txt
+Opens a .txt file entitled "Testing_file".
+
+.Sh AUTHORS
+.An Aaron St. John
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro
index 9ba9508e..7da86098 100644
--- a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro
+++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro
@@ -102,7 +102,10 @@ link.extra=ln -sf lumina-textedit $(INSTALL_ROOT)$${L_BINDIR}/lte
syntax.path=$${L_SHAREDIR}/lumina-desktop/syntax_rules
syntax.files=syntax_rules/*
-INSTALLS += target desktop link syntax
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-textedit.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-textedit.8.gz"
+
+INSTALLS += target desktop link syntax manpage
WITH_I18N{
INSTALLS += dotrans
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8
new file mode 100644
index 00000000..f61ecece
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8
@@ -0,0 +1,20 @@
+.Dd October 23, 2017
+.Dt LUMINA-XDG-ENTRY 8
+.Os 1.3.3
+
+.Sh NAME
+.Nm lumina-xdg-entry
+.Nd is a simple graphical tool for creating XDG desktop entries.
+
+.Sh SYNOPSIS
+.Nm
+
+.Sh DESCRIPTION
+The
+.Nm
+command brings up the graphical tool to create desktop entries.
+The user can create an XDG desktop with a specified name and generic name.
+
+.Sh AUTHORS
+.An Aaron St. John
+.Aq aaron@ixsystems.com
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
index 5784c76c..38bbf7ab 100644
--- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
+++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro
@@ -25,4 +25,7 @@ FORMS += mainwindow.ui
desktop.files=lumina-xdg-entry.desktop
desktop.path=$${L_SHAREDIR}/applications/
-INSTALLS += target desktop
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-xdg-entry.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-xdg-entry.8.gz"
+
+INSTALLS += target desktop manpage
bgstack15