diff options
author | Ken Moore <ken@pcbsd.org> | 2015-06-22 08:07:49 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-06-22 08:07:49 -0400 |
commit | 5ae409dec796accffa12b3131740b114acc1e13d (patch) | |
tree | 20e0c8acfac83e54e160a8e82c0ac1aa07bd55e8 | |
parent | Adjust the new window adjustment routine a bit - make it use the center of th... (diff) | |
download | lumina-5ae409dec796accffa12b3131740b114acc1e13d.tar.gz lumina-5ae409dec796accffa12b3131740b114acc1e13d.tar.bz2 lumina-5ae409dec796accffa12b3131740b114acc1e13d.zip |
Ensure that "Lumina" is used for the XDG registrations instead of "LUMINA" (proper capitalization based on standards).
-rw-r--r-- | lumina-desktop/main.cpp | 4 | ||||
-rw-r--r-- | lumina-info/lumina-info.desktop | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lumina-desktop/main.cpp b/lumina-desktop/main.cpp index 602ff2ec..4873751a 100644 --- a/lumina-desktop/main.cpp +++ b/lumina-desktop/main.cpp @@ -63,8 +63,8 @@ int main(int argc, char ** argv) } //Setup any pre-QApplication initialization values LXDG::setEnvironmentVars(); - setenv("DESKTOP_SESSION","LUMINA",1); - setenv("XDG_CURRENT_DESKTOP","LUMINA",1); + setenv("DESKTOP_SESSION","Lumina",1); + setenv("XDG_CURRENT_DESKTOP","Lumina",1); //Setup the log file qDebug() << "Lumina Log File:" << logfile.fileName(); if(QFile::exists(logfile.fileName()+".old")){ QFile::remove(logfile.fileName()+".old"); } diff --git a/lumina-info/lumina-info.desktop b/lumina-info/lumina-info.desktop index cb269788..2fea4e2e 100644 --- a/lumina-info/lumina-info.desktop +++ b/lumina-info/lumina-info.desktop @@ -5,7 +5,7 @@ Terminal=false Type=Application StartupNotify=true Categories=System; -OnlyShowIn=LUMINA +OnlyShowIn=Lumina Name=Lumina Desktop Information Comment=View information about the Lumina Desktop Environment |