1
0
mirror of https://github.com/jiriks74/presence.nvim synced 2024-11-23 20:37:50 +01:00

feat(Flatpak): Add flatpak socket path

Look for the Flatpak socket path before normal socket lookup
Properly fixes andweeb/presence.nvim#42
This commit is contained in:
Jiří Štefka 2023-09-25 21:12:21 +02:00
parent 87c857a56b
commit a451c6b309
Signed by: jiriks74
GPG Key ID: 1D5E30D3DB2264DE

@ -391,6 +391,16 @@ function Presence:get_discord_socket_path()
"TMPDIR",
}
local xdg_path = os.getenv("XDG_RUNTIME_DIR")
if xdg_path then
-- Append app/com.discordapp.Discord/ to the end of the path (make sure that / is at the end of xdg_path before appending)
xdg_path = xdg_path and xdg_path:match("/$") and xdg_path.."app/com.discordapp.Discord" or xdg_path.."/app/com.discordapp.Discord"
self.log:debug(string.format("Using XDG runtime path: %s", xdg_path))
sock_path = xdg_path:match("/$") and xdg_path..sock_name or xdg_path.."/"..sock_name
end
-- If the socket path is still nil, check other temp directories
if not sock_path then
for i = 1, #env_vars do
local var = env_vars[i]
local path = os.getenv(var)
@ -401,6 +411,7 @@ function Presence:get_discord_socket_path()
end
end
end
end
return sock_path
end