From 00061a7f8f30e9422af02fcb503396f8dd9b0967 Mon Sep 17 00:00:00 2001 From: Gabe Date: Sat, 10 Jan 2026 21:45:48 +0000 Subject: [PATCH] Update Bash Scripts/Install_Programs.sh --- Bash Scripts/Install_Programs.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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"