Skip to content

Instantly share code, notes, and snippets.

@intarstudents
Created November 13, 2012 20:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save intarstudents/4068349 to your computer and use it in GitHub Desktop.
Save intarstudents/4068349 to your computer and use it in GitHub Desktop.
Linux Mint 13 & 14 (MATE) - Fix missing application shortcuts in Synapse
#!/bin/sh
for file in $(grep -il "^OnlyShowIn=MATE;$" /usr/share/applications/*.desktop); do
echo "patching $file"
sed -e "s/OnlyShowIn=MATE;/#OnlyShowIn=MATE;/ig" $file > /tmp/tempfile.tmp
mv -f /tmp/tempfile.tmp $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment