From 14ba5b82c69e70776337aa6a9ebc4f7a2466b748 Mon Sep 17 00:00:00 2001 From: dhewg Date: Tue, 3 Jul 2012 02:24:36 +0200 Subject: [PATCH] Use XDG Base Directories on *nix See http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html --- neo/sys/linux/main.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/neo/sys/linux/main.cpp b/neo/sys/linux/main.cpp index ff10553f..1315e0fd 100644 --- a/neo/sys/linux/main.cpp +++ b/neo/sys/linux/main.cpp @@ -80,8 +80,22 @@ bool Sys_GetPath(sysPath_t type, idStr &path) { return true; case PATH_CONFIG: + s = getenv("XDG_CONFIG_HOME"); + if (s) + idStr::snPrintf(buf, sizeof(buf), "%s/dhewm3", s); + else + idStr::snPrintf(buf, sizeof(buf), "%s/.config/dhewm3", getenv("HOME")); + + path = buf; + return true; + case PATH_SAVE: - idStr::snPrintf(buf, sizeof(buf), "%s/.doom3", getenv("HOME")); + s = getenv("XDG_DATA_HOME"); + if (s) + idStr::snPrintf(buf, sizeof(buf), "%s/dhewm3", s); + else + idStr::snPrintf(buf, sizeof(buf), "%s/.local/share/dhewm3", getenv("HOME")); + path = buf; return true;