diff --git a/Bash Scripts/Install_Programs.sh b/Bash Scripts/Install_Programs.sh index 2a2fef1..cd658af 100644 --- a/Bash Scripts/Install_Programs.sh +++ b/Bash Scripts/Install_Programs.sh @@ -156,6 +156,22 @@ install_sublime () { echo } +install_joplin () { + PACKAGE="Joplin" + printf "Install %s? [y/N]: " "$PACKAGE" + read answer + case "$answer" in + y|Y) + echo "Installing $PACKAGE..." + wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash + ;; + *) + echo "Skipping $PACKAGE" + ;; + esac + echo +} + echo "Updating package list..." sudo apt update echo @@ -183,6 +199,7 @@ install_discord install_angry_ip_scanner install_onlyoffice install_sublime +install_joplin #"Flatseal" "Install via Flatpak: flatpak install flathub com.github.tchx84.Flatseal" #"Stremio" "Download from https://www.stremio.com" #"Visual Studio Code" "Requires Microsoft APT repo"