From e6f5ccb2fcd5c6f9eba16b309bfce0e4f9e3349d Mon Sep 17 00:00:00 2001 From: Natsumi Date: Fri, 21 Nov 2025 21:06:42 +1100 Subject: [PATCH] Fix Linux icon --- src-electron/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-electron/main.js b/src-electron/main.js index 029945d2..c1b0ab8c 100644 --- a/src-electron/main.js +++ b/src-electron/main.js @@ -693,7 +693,7 @@ async function createDesktopFile() { fs.mkdirSync(iconDir, { recursive: true }); } const iconUrl = - 'https://raw.githubusercontent.com/vrcx-team/VRCX/master/VRCX.png'; + 'https://raw.githubusercontent.com/vrcx-team/VRCX/master/images/VRCX.png'; await downloadIcon(iconUrl, iconPath) .then(() => { console.log('Icon downloaded and saved to:', iconPath);