Last active
November 6, 2020 18:48
-
-
Save ozscosta/6cc609e325f0078d73e162314c3f4f23 to your computer and use it in GitHub Desktop.
Enable desktop shortcuts from snapd apps
This file contains 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
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