aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaXDG.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-06-23 14:24:49 -0400
committerKen Moore <ken@pcbsd.org>2015-06-23 14:24:49 -0400
commitc3b62157bdd6a30b4115b192e62d204314fbd6e8 (patch)
treedea7b83aa3f1c6f6be03a6bbee123031f897f452 /libLumina/LuminaXDG.cpp
parentAdjust/verify all the XDG routines which touch a file based on the desktop na... (diff)
downloadlumina-c3b62157bdd6a30b4115b192e62d204314fbd6e8.tar.gz
lumina-c3b62157bdd6a30b4115b192e62d204314fbd6e8.tar.bz2
lumina-c3b62157bdd6a30b4115b192e62d204314fbd6e8.zip
Add a new option in luminaDesktop.conf for auto-generating desktop icons/launchers.
Diffstat (limited to 'libLumina/LuminaXDG.cpp')
-rw-r--r--libLumina/LuminaXDG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libLumina/LuminaXDG.cpp b/libLumina/LuminaXDG.cpp
index 40752a8c..ed576f23 100644
--- a/libLumina/LuminaXDG.cpp
+++ b/libLumina/LuminaXDG.cpp
@@ -406,7 +406,7 @@ void LXDG::setEnvironmentVars(){
setenv("XDG_DATA_HOME",QString(QDir::homePath()+"/.local/share").toUtf8(), 0);
setenv("XDG_CONFIG_HOME",QString(QDir::homePath()+"/.config").toUtf8(), 0);
setenv("XDG_DATA_DIRS","/usr/local/share:/usr/share", 0);
- setenv("XDG_CONFIG_DIRS","/etc/xdg", 0);
+ setenv("XDG_CONFIG_DIRS","/etc/xdg:/usr/local/etc/xdg", 0);
setenv("XDG_CACHE_HOME",QString(QDir::homePath()+"/.cache").toUtf8(), 0);
//Don't set "XDG_RUNTIME_DIR" yet - need to look into the specs
}
bgstack15