How can I remove the Epic Games Launcher Icon from the Application Menu?

I recently installed Lutris --> Fortnite --> Epic Games --> and selected create shortcut to Applications Menu as opposed to Desktop for the Epic Games Launcher, Fornite worked briefly but the anti-cheat system would kick me out mid-game. Thus remove Fortnite via Lutris and Epic Games as a whole. But the Epic Games Launcher has since remained.

epic_games_launcher

When you try run the file, you get the following error

enter image description here

I have ran the following command to see if there are any files named Epic Games Launcher with the intention of running gedit to see if it has been modified to appear on the application menu

for app in /usr/share/applications/*.desktop; do echo "${app:24:-8}"; done

Navigating via sudo nautilus to find the file named Epic results in: /usr/share/applications

enter image description here

And then filter on Ep*enter image description here

But I get nothing, can someone please help, this will also help me understand more about how these applications are handled.

1

3 Answers

The Desktop Entry file you are looking is most probably in your local directory: ~/.local/share/applications/. You can easily find file containing name of your app using recursive grep:

grep "Epic Games Launcher" ~/.local/share/applications/ -r

Here are some steps to "Possibly" fix your issue

Go into terminal and type "su" and enter your root password Now you are root! Now type sudo nautilus Then go to the directory /usr/share applications Now, instead of doing the command you did just click the search bar and search "Epic" and you should find epic games! Delete the desktop file then restart Gnome Shell by either killing the process in system monitor or by restarting the PC!

Helpful imageI hope this has helped your issue! If it hasn't feel free to comment and I will get to you quickly!

2

EPIC_GAMES_LAUNCHER icon removed via the following method:

enter image description here

In the applications menu I search for the Epic Games Launcher to isolate it. This brought up the path location of the icon for which I couldn't find before via the terminal using which/find/ & mlocate.

Step 1: Navigate to the path provided: cd ~/.local/share/applications/wine/Programs/

enter image description here

This is the file I was looking for.enter image description here

Step 2: remove the file: rm 'Epic Games Launcher.desktop'

Step 3: restart the OS

Step 4: verify that the icon is gone [DONE]

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like