Steps to remove a webapp from Desktop [Linux only]
-
Traverse to your home directory
cd ~ ls -la
-
You will find folder like this application_namexxx
-
Remove the folder
rm -rf application_namexxx
-
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!