1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Update to make it works in Kubuntu (#1038)

The directory ~/.local/share/applications/ exists in Kubuntu 18.04 so with this change the script also work in Kubuntu.
This commit is contained in:
Lucas 2018-12-14 15:03:39 -03:00 committed by Laurent Cozic
parent 5d629508c1
commit d3b4379161

View File

@ -58,7 +58,7 @@ if [[ $(< ~/.joplin/VERSION) != "$version" ]]; then
desktop=${desktop,,} # convert to lower case
# Create icon for Gnome
if [[ $desktop =~ .*gnome.* ]]
if [[ $desktop =~ .*gnome.* ]] || [[ $desktop =~ .*kde.* ]]
then
echo -e "[Desktop Entry]\nEncoding=UTF-8\nName=Joplin\nExec=/home/$USER/.joplin/Joplin.AppImage\nIcon=/home/$USER/.joplin/Icon512.png\nType=Application\nCategories=Application;" >> ~/.local/share/applications/joplin.desktop
fi