aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-10-09 11:26:50 -0400
committerB Stack <bgstack15@gmail.com>2020-10-09 11:26:50 -0400
commit0983e2d9d6af7d4f3508fff53719242c0155e990 (patch)
tree2bc06b3ed8a7ac44b25560ec44c4a3d87f23c5dc /src-qt5
parentCleanup some more of the lumina startup routines - specifically around the co... (diff)
downloadlumina-debianize.tar.gz
lumina-debianize.tar.bz2
lumina-debianize.zip
WIP: initial debianization attemptdebianize
importing stevep's MX Linux package and fixing many Linitian warnings
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/OS-detect.pri4
-rw-r--r--src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer-pandora.desktop2
2 files changed, 5 insertions, 1 deletions
diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri
index b61a137e..cdc4a688 100644
--- a/src-qt5/OS-detect.pri
+++ b/src-qt5/OS-detect.pri
@@ -89,6 +89,10 @@ isEmpty(OS){
isEmpty(L_ETCDIR){ L_ETCDIR = $${PREFIX}/../etc }
isEmpty(L_MANDIR){ L_MANDIR = $${PREFIX}/share/man }
}
+ equals(LINUX_DISTRO,"Devuan"){
+ isEmpty(L_ETCDIR){ L_ETCDIR = $${PREFIX}/etc }
+ isEmpty(L_MANDIR){ L_MANDIR = $${PREFIX}/share/man }
+ }
}else{
isEmpty(PREFIX){ PREFIX=/usr/local }
OS="Unknown";
diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer-pandora.desktop b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer-pandora.desktop
index 97ae74fa..073f9031 100644
--- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer-pandora.desktop
+++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer-pandora.desktop
@@ -1,5 +1,5 @@
[Desktop Entry]
-Exec=lumina-mediaplayer --pandora
+Exec=lumina-mediaplayer --pandora %U
TryExec=pianobar
Icon=pandora
Terminal=false
bgstack15