Skip to content

Instantly share code, notes, and snippets.

@ozscosta
Last active November 6, 2020 18:48
Show Gist options
  • Save ozscosta/6cc609e325f0078d73e162314c3f4f23 to your computer and use it in GitHub Desktop.
Save ozscosta/6cc609e325f0078d73e162314c3f4f23 to your computer and use it in GitHub Desktop.
Enable desktop shortcuts from snapd apps
for i in /var/lib/snapd/desktop/applications/*.desktop; do
if [ ! -f ~/.local/share/applications/${i##*/} ];then
ln -s /var/lib/snapd/desktop/applications/${i##*/} ~/.local/share/applications/${i##*/};
fi;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment