From 7509236d06fc9d70a6800ec359e66f397a4a552c Mon Sep 17 00:00:00 2001 From: Uriel Date: Tue, 6 Feb 2024 01:20:24 -0300 Subject: [PATCH] Add path constants Co-authored-by: Kitlith --- src/bridge/bridge-unix-sockets.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bridge/bridge-unix-sockets.cpp b/src/bridge/bridge-unix-sockets.cpp index 7e3069d..f2c1684 100644 --- a/src/bridge/bridge-unix-sockets.cpp +++ b/src/bridge/bridge-unix-sockets.cpp @@ -33,7 +33,8 @@ #include #define TMP_DIR "/tmp" -#define SLIMEVR_HOME_LOCAL_DIR ".local/share/slimevr" +#define XDG_DATA_DIR_DEFAULT ".local/share" +#define SLIMEVR_DATA_DIR "slimevr" #define SOCKET_NAME "SlimeVRDriver" namespace fs = std::filesystem;