Update Bash Scripts/Install_Programs.sh

This commit is contained in:
2026-01-10 21:45:48 +00:00
parent b4f0b56d82
commit 00061a7f8f
+17
View File
@@ -156,6 +156,22 @@ install_sublime () {
echo 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..." echo "Updating package list..."
sudo apt update sudo apt update
echo echo
@@ -183,6 +199,7 @@ install_discord
install_angry_ip_scanner install_angry_ip_scanner
install_onlyoffice install_onlyoffice
install_sublime install_sublime
install_joplin
#"Flatseal" "Install via Flatpak: flatpak install flathub com.github.tchx84.Flatseal" #"Flatseal" "Install via Flatpak: flatpak install flathub com.github.tchx84.Flatseal"
#"Stremio" "Download from https://www.stremio.com" #"Stremio" "Download from https://www.stremio.com"
#"Visual Studio Code" "Requires Microsoft APT repo" #"Visual Studio Code" "Requires Microsoft APT repo"