aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMrt134 <timmoore88@gmail.com>2017-04-03 13:49:18 -0400
committerMrt134 <timmoore88@gmail.com>2017-04-03 13:49:18 -0400
commitb0bf13af9bfc1afc5f3365a9b88280b707c08967 (patch)
treea3d318028bcb9639723310054344c418842bf8ee
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-b0bf13af9bfc1afc5f3365a9b88280b707c08967.tar.gz
lumina-b0bf13af9bfc1afc5f3365a9b88280b707c08967.tar.bz2
lumina-b0bf13af9bfc1afc5f3365a9b88280b707c08967.zip
Add lumina-desktop.8 manpage:
- Update plist - Update lumina-desktop.pro
-rw-r--r--port-files/FreeBSD/pkg-plist1
-rw-r--r--src-qt5/core/lumina-desktop/lumina-desktop.861
-rw-r--r--src-qt5/core/lumina-desktop/lumina-desktop.pro5
3 files changed, 66 insertions, 1 deletions
diff --git a/port-files/FreeBSD/pkg-plist b/port-files/FreeBSD/pkg-plist
index 68de807e..3ec4b411 100644
--- a/port-files/FreeBSD/pkg-plist
+++ b/port-files/FreeBSD/pkg-plist
@@ -830,6 +830,7 @@ share/applications/lumina-xconfig.desktop
%%DATADIR%%-desktop/themes/Lumina-default.qss.template
%%DATADIR%%-desktop/themes/None.qss.template
man/man1/lumina-open.1.gz
+man/man8/lumina-desktop.8.gz
share/pixmaps/Insight-FileManager.png
share/pixmaps/Lumina-DE.png
share/wallpapers/Lumina-DE/Lumina_Wispy_blue-grey-zoom.jpg
diff --git a/src-qt5/core/lumina-desktop/lumina-desktop.8 b/src-qt5/core/lumina-desktop/lumina-desktop.8
new file mode 100644
index 00000000..f86d3044
--- /dev/null
+++ b/src-qt5/core/lumina-desktop/lumina-desktop.8
@@ -0,0 +1,61 @@
+.Dd March 29, 2017
+.Dt LUMINA-DESKTOP 8
+.Os Lumina Desktop Environment
+.\"-------------------------------------------------------------------
+.Sh NAME
+.Nm lumina-desktop
+.Nd Binary used to run or communicate with the desktop.
+.\"-------------------------------------------------------------------
+.Sh SYNOPSIS
+.Cm lumina-desktop
+.Pp
+.Cm lumina-desktop --check-geoms
+.Pp
+.Cm lumina-desktop --version
+.\"-------------------------------------------------------------------
+.Sh DESCRIPTION
+The
+.Nm
+utility starts or communicates with instances of the Lumina desktop.
+NOTE: The start-lumina-desktop command is recommended over
+.Nm
+, refer to the SEE ALSO section.
+.Pp
+Here are the
+.Nm
+options:
+.Pp
+.Bl -tag -width indent
+.It Fl -check-geoms
+Prompts the desktop to verify and/or match current monitor settings.
+.It Fl -version
+Returns the currently installed version of Lumina.
+.El
+.\"-------------------------------------------------------------------
+.Sh EXAMPLES
+.Bl -tag -width indent
+.Pp
+.It lumina-desktop --version
+"1.2.1" (User's installed version of Lumina.)
+.El
+.\"-------------------------------------------------------------------
+.Sh FILES
+.Bl -tag -width indent
+.It Pa /usr/local/bin/lumina-desktop
+Binary location.
+.It Pa /usr/local/share/lumina-desktop/
+Master directory containing sub-directories and auxiliary files
+related to the Lumina runtime.
+.It Pa ${XDG_CONFIG_HOME}/lumina-desktop/
+Directory containing the user's configuration files. See
+https://specifications.freedesktop.org/basedir-spec/latest/ar01s03.html
+for more information about the environment variable.
+.El
+.\"-------------------------------------------------------------------
+.Sh SEE ALSO
+.Xr lumina-open.1,
+.Xr start-lumina-desktop.8
+.\"-------------------------------------------------------------------
+.Sh AUTHOR
+.An Tim Moore
+.Aq timmoore88@gmail.com
diff --git a/src-qt5/core/lumina-desktop/lumina-desktop.pro b/src-qt5/core/lumina-desktop/lumina-desktop.pro
index 1d60f7d3..8b1f1c7f 100644
--- a/src-qt5/core/lumina-desktop/lumina-desktop.pro
+++ b/src-qt5/core/lumina-desktop/lumina-desktop.pro
@@ -181,7 +181,10 @@ TRANSLATIONS = i18n/lumina-desktop_af.ts \
dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/
dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/
-INSTALLS += target desktop icons wallpapers defaults conf fluxconf
+manpage.path=$${L_MANDIR}/man8/
+manpage.extra="$${MAN_ZIP} lumina-desktop.8 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-desktop.8.gz"
+
+INSTALLS += target desktop icons wallpapers defaults conf fluxconf manpage
WITH_I18N{
INSTALLS += dotrans
bgstack15