Last active
November 17, 2025 00:15
-
-
Save cwharris/b653f04d310bfea796311ed6226fc0e3 to your computer and use it in GitHub Desktop.
UE 5.7.0 Desktop Icon - Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/bash | |
| tee ~/.local/share/applications/unreal-editor.desktop <<EOF | |
| [Desktop Entry] | |
| Name=Unreal Editor 5.7.0 | |
| GenericName=Unreal Engine Editor | |
| Comment=Launch Unreal Engine 5.7.0 | |
| Exec=/home/cwharris/UnrealEngine/5.7.0/Engine/Binaries/Linux/UnrealEditor | |
| Icon=/home/cwharris/UnrealEngine/5.7.0/Engine/Source/Runtime/Launch/Resources/Linux/UnrealEngine.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Development;IDE;Graphics; | |
| Keywords=unreal;ue5;ue;engine;editor;epic; | |
| StartupNotify=true | |
| EOF && \ | |
| chmod 644 ~/.local/share/applications/unreal-editor.desktop && \ | |
| gtk-launch unreal-editor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment