Skip to content

Instantly share code, notes, and snippets.

@dolftax
Last active August 29, 2015 14:07
Show Gist options
  • Save dolftax/b19bc8f7ee2f97c63b4b to your computer and use it in GitHub Desktop.
Save dolftax/b19bc8f7ee2f97c63b4b to your computer and use it in GitHub Desktop.
Uninstall webapps on Desktop

Steps to remove a webapp from Desktop [Linux only]

  1. Traverse to your home directory

    cd ~ ls -la

  2. You will find folder like this application_namexxx

  3. Remove the folder

    rm -rf application_namexxx

  4. To remvove the app from 'Applications Menu' listing

    cd .cache ls -la rm -rf application_name cd .. cd .local/share/applications/ rm -rf application_namexxx.desktop

You're done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment