mirror of
https://github.com/laurent22/joplin.git
synced 2025-04-04 21:35:03 +02:00
Added comments and information texts
Comments, presentation title, final informative text have been added and temporary variable is deleted.
This commit is contained in:
parent
1b784fe3b0
commit
8c3669588b
@ -1,9 +1,28 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
# Title
|
||||||
|
echo " _ _ _ _ _ _ "
|
||||||
|
echo " | | (_) (_) | | | | | "
|
||||||
|
echo " | | ___ _ __ _ _ __ _ _ __ ___| |_ __ _| | | ___ _ __ "
|
||||||
|
echo " _ | |/ _ \\\| '_ \| | '_ \\ | | '_ \\\/ __| __/ _\` | | |/ _ \ '__|"
|
||||||
|
echo " | |__| | (_) | |_) | | | | | | | | | \__ \ || (_| | | | __/ | "
|
||||||
|
echo " \____/ \___/| .__/|_|_| |_| |_|_| |_|___/\__\__,_|_|_|\___|_| "
|
||||||
|
echo " | | "
|
||||||
|
echo " |_| "
|
||||||
|
# Get the latest version to download
|
||||||
version=$(curl --silent "https://api.github.com/repos/laurent22/joplin/releases/latest" | grep -Po '"tag_name": "v\K.*?(?=")')
|
version=$(curl --silent "https://api.github.com/repos/laurent22/joplin/releases/latest" | grep -Po '"tag_name": "v\K.*?(?=")')
|
||||||
|
# Delete previous version
|
||||||
rm ~/.joplin/*.AppImage ~/.local/share/applications/joplin.desktop
|
rm ~/.joplin/*.AppImage ~/.local/share/applications/joplin.desktop
|
||||||
|
# Creates the folder where the binary will be stored
|
||||||
mkdir -p ~/.joplin/
|
mkdir -p ~/.joplin/
|
||||||
|
# Download the latest version
|
||||||
wget -O ~/.joplin/Joplin-$version-x86_64.AppImage https://github.com/laurent22/joplin/releases/download/v$version/Joplin-$version-x86_64.AppImage
|
wget -O ~/.joplin/Joplin-$version-x86_64.AppImage https://github.com/laurent22/joplin/releases/download/v$version/Joplin-$version-x86_64.AppImage
|
||||||
|
# Gives execution privileges
|
||||||
chmod +x ~/.joplin/Joplin-$version-x86_64.AppImage
|
chmod +x ~/.joplin/Joplin-$version-x86_64.AppImage
|
||||||
|
# Download icon
|
||||||
wget -O ~/.joplin/Icon512.png https://joplin.cozic.net/images/Icon512.png
|
wget -O ~/.joplin/Icon512.png https://joplin.cozic.net/images/Icon512.png
|
||||||
|
# Create icon for Gnome
|
||||||
echo -e "[Desktop Entry]\nEncoding=UTF-8\nName=Joplin\nExec=/home/$USER/.joplin/Joplin-$version-x86_64.AppImage\nIcon=/home/$USER/.joplin/Icon512.png\nType=Application\nCategories=Application;" >> ~/.local/share/applications/joplin.desktop
|
echo -e "[Desktop Entry]\nEncoding=UTF-8\nName=Joplin\nExec=/home/$USER/.joplin/Joplin-$version-x86_64.AppImage\nIcon=/home/$USER/.joplin/Icon512.png\nType=Application\nCategories=Application;" >> ~/.local/share/applications/joplin.desktop
|
||||||
|
# Informs the user that it has been installed and cleans variables
|
||||||
|
echo 'Joplin installed in the version' $version
|
||||||
|
unset version
|
||||||
|
Loading…
x
Reference in New Issue
Block a user