summaryrefslogtreecommitdiff
path: root/louloulibs/utils/xdg.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-06-28 14:41:33 +0200
committerlouiz’ <louiz@louiz.org>2017-06-28 14:41:33 +0200
commit13a1ab1878fd6312aea485ded3f5bad59c36f17f (patch)
tree071b90523126d677f714cbf13346507f2e500d69 /louloulibs/utils/xdg.cpp
parenta1349361d2c15929e8260536c9091f2a4c2048a4 (diff)
parent7e69d0387e85eeed10d605349feeba595c3fa0ee (diff)
downloadbiboumi-13a1ab1878fd6312aea485ded3f5bad59c36f17f.tar.gz
biboumi-13a1ab1878fd6312aea485ded3f5bad59c36f17f.tar.bz2
biboumi-13a1ab1878fd6312aea485ded3f5bad59c36f17f.tar.xz
biboumi-13a1ab1878fd6312aea485ded3f5bad59c36f17f.zip
Merge remote-tracking branch 'remotes/debian/master' into debian
Diffstat (limited to 'louloulibs/utils/xdg.cpp')
-rw-r--r--louloulibs/utils/xdg.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/louloulibs/utils/xdg.cpp b/louloulibs/utils/xdg.cpp
deleted file mode 100644
index 48212a1..0000000
--- a/louloulibs/utils/xdg.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#include <utils/xdg.hpp>
-#include <cstdlib>
-
-#include "louloulibs.h"
-
-std::string xdg_path(const std::string& filename, const char* env_var)
-{
- 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");
- if (home)
- return std::string{home} + "/" ".config" "/" PROJECT_NAME "/" + filename;
- else
- return 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");
-}