From 615d4cb8b06abc7ae16cffe5b9999381a438d1d9 Mon Sep 17 00:00:00 2001 From: Bas van den Wollenberg Date: Wed, 22 Jun 2022 21:36:58 +0200 Subject: [PATCH 1/2] Fix Microsoft kernel detection for WSL 2 (#64) --- lua/presence/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/presence/init.lua b/lua/presence/init.lua index 58edf3b..966fded 100644 --- a/lua/presence/init.lua +++ b/lua/presence/init.lua @@ -84,7 +84,7 @@ function Presence:setup(options) local os_name = self.get_os_name(uname) self.os = { name = os_name, - is_wsl = uname.release:find("Microsoft") ~= nil, + is_wsl = uname.release:lower():find("microsoft") ~= nil, path_separator = separator, } From 660bd8815ef8da029fa0058f76ac7fa2ca8f9ec7 Mon Sep 17 00:00:00 2001 From: Cory Shaw Date: Mon, 27 Jun 2022 16:05:34 -0400 Subject: [PATCH 2/2] Fix sudo error on macOS (#68) When using sudo a separate environment is used unless specifying sudo -E. This fixes the error of path being nil when using neovim in sudo --- lua/presence/init.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lua/presence/init.lua b/lua/presence/init.lua index 966fded..ff7db70 100644 --- a/lua/presence/init.lua +++ b/lua/presence/init.lua @@ -365,9 +365,12 @@ function Presence:get_discord_socket_path() elseif self.os.name == "macos" then -- Use $TMPDIR for macOS local path = os.getenv("TMPDIR") - sock_path = path:match("/$") - and path..sock_name - or path.."/"..sock_name + + if path then + sock_path = path:match("/$") + and path..sock_name + or path.."/"..sock_name + end elseif self.os.name == "linux" then -- Check various temp directory environment variables local env_vars = {