#!/usr/bin/env bash ###################################################################### # Linux Desktop Application Installations via Flatpak # ###################################################################### # This script will: # # - Check that Flatpak is installed / promt to install # # - Update currently installed Flatpak apps from FlatHub # # - Check app not already installed via system package manager # # - Then install any not-yet-installed that are apps listed # # # # IMPORTANT: Be sure to remove / comment any apps you do not want! # # # # Licensed under MIT (C) Alicia Sykes 2022 # ###################################################################### # Remote origin to use for installations flatpak_origin='flathub' # List of desktop apps to be installed via Flatpak flatpak_apps=( # Communication 'com.discordapp.Discord' # Team messaging and voice 'im.riot.Riot' # Decentralized Matrix chat 'info.mumble.Mumble' # Low latency VoIP client 'org.jitsi.jitsi-meet' # Encrypted video calls 'org.mozilla.Thunderbird' # Email + calendar client 'org.signal.Signal' # Private messenger, mobile 'com.slack.Slack' # Work and team messaging 'com.github.eneshecan.WhatsAppForLinux' # WhatApp client # Media 'com.spotify.Client' # Music streaming 'com.valvesoftware.Steam' # Gaming 'org.gnome.Cheese' # Webcam client 'org.libretro.RetroArch' # Retro game emulation 'org.videolan.VLC' # Media player # Creativity 'com.ultimaker.cura' # 3D slicing 'com.obsproject.Studio' # Video streaming 'fr.handbrake.ghb' # Video transcoder 'io.github.seadve.Kooha' # Screen recorder 'nl.hjdskes.gcolor3' # Color picker 'org.audacityteam.Audacity' # Sound editor 'org.blender.Blender' # 3D modeling 'org.darktable.Darktable' # Video editor 'org.gimp.GIMP' # Picture editor 'org.inkscape.Inkscape' # Vector editor 'org.shotcut.Shotcut' # Video editor 'org.synfig.SynfigStudio' # 2D animation # Software development 'com.visualstudio.code' # Extendable IDE 'com.getpostman.Postman' # API development 'cc.arduino.IDE2' # IOT development 'com.axosoft.GitKraken' # GUI git client 'com.google.AndroidStudio' # Android dev IDE 'io.podman_desktop.PodmanDesktop' # Docker / Podman UI # Security testing 'org.wireshark.Wireshark' # Packet capture and analyzer 'org.zaproxy.ZAP' # Auto vulnerability scanning 'org.nmap.Zenmap' # GUI for Nmap security scans # Browsers 'org.mozilla.firefox' 'com.github.Eloston.UngoogledChromium' 'com.github.micahflee.torbrowser-launcher' # Office 'org.libreoffice.LibreOffice' # Personal 'ch.protonmail.protonmail-bridge' # ProtonMail bridge 'com.belmoussaoui.Authenticator' # OTP authenticator 'org.cryptomator.Cryptomator' # Encryption for cloud 'org.standardnotes.standardnotes' # Encrypted synced notes # Missing: Trewsorit, 1Password, EteSync, Veracrypt, Ledger ) # Color Variables CYAN_B='\033[1;96m' YELLOW='\033[0;93m' RED_B='\033[1;31m' RESET='\033[0m' GREEN='\033[0;32m' PURPLE='\033[0;35m' LIGHT='\x1b[2m' PROMPT_TIMEOUT=15 # When user is prompted for input, skip after x seconds # Helper function to install Flatpak for users current distro function install_flatpak () { # Arch, Manjaro if hash "pacman" 2> /dev/null; then echo -e "${PURPLE}Installing Flatpak via Pacman${RESET}" sudo pacman -S flatpak # Debian, Ubuntu, PopOS, Raspian elif hash "apt" 2> /dev/null; then echo -e "${PURPLE}Installing Flatpak via apt get${RESET}" sudo apt install flatpak # Alpine elif hash "apk" 2> /dev/null; then echo -e "${PURPLE}Installing Flatpak via apk add${RESET}" sudo apk add flatpak # Red Hat, CentOS elif hash "yum" 2> /dev/null; then echo -e "${PURPLE}Installing Flatpak via Yum${RESET}" sudo yum install flatpak fi echo -e "${PURPLE}Adding Flathub repo${RESET}" flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo } # Ask user if they'd like to proceed, and exit if not echo -e "${CYAN_B}Would you like to install Flatpak desktop apps? (y/N)${RESET}\n" read -t $PROMPT_TIMEOUT -n 1 -r echo if [[ ! $REPLY =~ ^[Yy]$ ]]; then echo -e "${YELLOW}Skipping Flatpak installations..." exit 0 fi echo -e "${CYAN_B}Starting Flatpak App Installation Script${RESET}" # Check that Flatpak is present, prompt to install or exit if not if ! hash flatpak 2> /dev/null; then echo -e "${PURPLE}Flatpak isn't yet installed on your system${RESET}" echo -e "${CYAN_B}Would you like to install Flatpak now?${RESET}\n" read -t $PROMPT_TIMEOUT -n 1 -r echo if [[ $REPLY =~ ^[Yy]$ ]]; then install_flatpak else echo -e "${YELLOW}Skipping Flatpak installations, as Flatpack not installed" exit 0 fi fi # Update currently installed apps echo -e "${PURPLE}Updating installed apps${RESET}" yes "" | flatpak update # Itterate over each app, check if already installed, otherwise install now echo -e "${PURPLE}Installing apps defined in manifest${RESET}" for app in ${flatpak_apps[@]}; do app_name=$(echo $app | rev | cut -d "." -f1 | rev) is_in_flatpak=$(echo $(flatpak list --columns=ref | grep $app)) is_in_pacman=$(echo $(pacman -Qk $(echo $app_name | tr 'A-Z' 'a-z') 2> /dev/null )) is_in_apt=$(echo $(dpkg -s $(echo $app_name | tr 'A-Z' 'a-z') 2> /dev/null )) # Check app not already installed via Flatpak if [ -n "$is_in_flatpak" ]; then echo -e "${YELLOW}[Skipping] ${LIGHT}${app_name} is already installed.${RESET}" # Check app not installed via Pacman (Arch Linux) elif [[ "${is_in_pacman}" == *"total files"* ]]; then echo -e "${YELLOW}[Skipping] ${LIGHT}${app_name} is already installed via Pacman.${RESET}" # Check app not installed via apt get (Debian) elif [[ "${is_in_apt}" == *"install ok installed"* ]]; then echo -e "${YELLOW}[Skipping] ${LIGHT}${app_name} is already installed via apt-get.${RESET}" else # Install app using Flatpak echo -e "${GREEN}[Installing] ${LIGHT}Downloading ${app_name} (from ${flatpak_origin}).${RESET}" flatpak install -y --noninteractive $flatpak_origin $app echo fi done echo -e "${PURPLE}Finished processing Flatpak apps${RESET}"