From 473225aac4916c10c0e9f78a836d2a192d7c0772 Mon Sep 17 00:00:00 2001 From: Victorious Children Studios Date: Thu, 14 Dec 2023 13:26:27 +0200 Subject: [PATCH] Changed VCStudio to Blender-Pipeline in .desktop --- troubleshooter/troubleshooter.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/troubleshooter/troubleshooter.py b/troubleshooter/troubleshooter.py index 84691a0..f720be9 100644 --- a/troubleshooter/troubleshooter.py +++ b/troubleshooter/troubleshooter.py @@ -313,7 +313,7 @@ for i in missing: desktop = """[Desktop Entry] -Name=VCStudio +Name=Blender-Pipeline GenericName=Blender-Organizer Path="""+os.getcwd()+""" Exec=python3 run.py @@ -324,8 +324,8 @@ Categories=Graphics;3DGraphics;Office """ if os.path.exists(os.environ['HOME']+"/.local/share/applications") \ -and not os.path.exists(os.environ['HOME']+"/.local/share/applications/VCStudio.desktop"): - o = open(os.environ['HOME']+"/.local/share/applications/VCStudio.desktop", "w") +and not os.path.exists(os.environ['HOME']+"/.local/share/applications/Blender-Pipeline.desktop"): + o = open(os.environ['HOME']+"/.local/share/applications/Blender-Pipeline.desktop", "w") o.write(desktop) o.close() output("\033[1;42m", talk.text("desktopcreated")) @@ -358,6 +358,5 @@ print("\033[1;m") -