summaryrefslogtreecommitdiff
path: root/louloulibs/utils/xdg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'louloulibs/utils/xdg.cpp')
-rw-r--r--louloulibs/utils/xdg.cpp17
1 files changed, 13 insertions, 4 deletions
diff --git a/louloulibs/utils/xdg.cpp b/louloulibs/utils/xdg.cpp
index 7a60dd8..48212a1 100644
--- a/louloulibs/utils/xdg.cpp
+++ b/louloulibs/utils/xdg.cpp
@@ -3,11 +3,11 @@
#include "louloulibs.h"
-std::string xdg_config_path(const std::string& filename)
+std::string xdg_path(const std::string& filename, const char* env_var)
{
- const char* xdg_config_home = ::getenv("XDG_CONFIG_HOME");
- if (xdg_config_home && xdg_config_home[0] == '/')
- return std::string{xdg_config_home} + "/" PROJECT_NAME "/" + filename;
+ const char* xdg_home = ::getenv(env_var);
+ if (xdg_home && xdg_home[0] == '/')
+ return std::string{xdg_home} + "/" PROJECT_NAME "/" + filename;
else
{
const char* home = ::getenv("HOME");
@@ -18,3 +18,12 @@ std::string xdg_config_path(const std::string& filename)
}
}
+std::string xdg_config_path(const std::string& filename)
+{
+ return xdg_path(filename, "XDG_CONFIG_HOME");
+}
+
+std::string xdg_data_path(const std::string& filename)
+{
+ return xdg_path(filename, "XDG_DATA_HOME");
+}