Created
April 11, 2020 18:56
-
-
Save zoe1337/67e6f9e04c65debed90dca3b99c10792 to your computer and use it in GitHub Desktop.
removes wine file associations
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/env bash | |
cd $HOME | |
rm -f ~/.local/share/applications/wine-extension*.desktop | |
rm -f ~/.local/share/icons/hicolor/*/*/application-x-wine-extension* | |
rm -f ~/.local/share/applications/mimeinfo.cache | |
rm -f ~/.local/share/mime/packages/x-wine* | |
rm -f ~/.local/share/mime/application/x-wine-extension* | |
update-desktop-database ~/.local/share/applications | |
update-mime-database ~/.local/share/mime/ | |
echo "you\'re good now." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment