From 1d490034bc589362fe00853b5f3983daf7ed0468 Mon Sep 17 00:00:00 2001 From: Edward Boulderstone Date: Sat, 13 Dec 2025 23:37:55 +0000 Subject: [PATCH] Fixed location of pulse config home when xdg config home is set --- lib/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configuration.js b/lib/configuration.js index e284baf..01fb268 100755 --- a/lib/configuration.js +++ b/lib/configuration.js @@ -195,7 +195,7 @@ const getConfigHomePath = (function() { if (configHome === undefined) { if (typeof process.env.XDG_CONFIG_HOME === 'string' && process.env.XDG_CONFIG_HOME.length > 0) { - configHome = process.env.XDG_CONFIG_HOME; + configHome = `${process.env.XDG_CONFIG_HOME}/pulse`; } else { const home = getHomePath(); if (typeof home === 'string')