From d9b1891ab47df1148a4677116bc11d3bd56bcf48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Vasconcellos?= Date: Tue, 30 Jul 2024 18:58:06 -0300 Subject: [PATCH] Fix .desktop incorrect executable name --- scripts/fix-deb.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/fix-deb.sh b/scripts/fix-deb.sh index 95e66a948605..2da36706bec9 100755 --- a/scripts/fix-deb.sh +++ b/scripts/fix-deb.sh @@ -130,6 +130,8 @@ curl -LSs 'https://gist.githubusercontent.com/HeavenVolkoff/0993c42bdb0b952eb5bf # Fill the Categories entry in .desktop file sed -i 's/^Categories=.*/Categories=System;FileTools;FileManager;/' "${_tmp}/data/usr/share/applications/spacedrive.desktop" +# Rename sd-desktop to spacedrive +sed -i 's/=sd-desktop/=spacedrive/' "${_tmp}/data/usr/share/applications/spacedrive.desktop" # Fix data permissions find "${_tmp}/data" -type d -exec chmod 755 {} +