From 394ebd59413657c277484342ae086f8e2094f978 Mon Sep 17 00:00:00 2001 From: gunther6000 Date: Sun, 4 Aug 2024 01:52:59 -0400 Subject: [PATCH] Rework For flatpak Install Reworked it to Add flatpak library packaging system That can Allow You To Make Different flatpak Library's --- scripts/flatpakz | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/scripts/flatpakz b/scripts/flatpakz index 751a163..1cc112b 100755 --- a/scripts/flatpakz +++ b/scripts/flatpakz @@ -1,12 +1,24 @@ #!/bin/bash -#!/bin/bash -#!/bin/bash #set -e ################################################################################################################## # Written to be used on 64 bits computers # Author : DarkXero # Website : http://xerolinux.github.io ################################################################################################################## + +# Define an array of Flatpak packages +flatpak_packages=( + audacity gitahead rpi-imager jitsi-meet zoom filezilla bitwarden parsec warpinator + PlexDesktop PlexHTPC stremio mpv vlc handbrake mkvtoolnix-gui filebot makemkv + org.remmina.Remmina libreoffice openrgb firmware ferdium io.github.spacingbat3.webcord + thunderbird org.gnome.Rhythmbox3 com.obsproject.Studio com.obsproject.Studio.Locale + com.obsproject.Studio.Plugin.Gstreamer com.obsproject.Studio.Plugin.InputOverlay + com.obsproject.Studio.Plugin.MoveTransition com.obsproject.Studio.Plugin.OBSVkCapture + com.obsproject.Studio.Plugin.ScaleToSound com.obsproject.Studio.Plugin.SceneSwitcher + com.obsproject.Studio.Plugin.TransitionTable com.obsproject.Studio.Plugin.WebSocket + com.obsproject.Studio.Plugin.waveform +) + echo tput setaf 4 echo "###############################################################################" @@ -18,7 +30,10 @@ echo "#################################" echo " Install Yer Flatpaks " echo "#################################" echo -flatpak install -y audacity gitahead rpi-imager jitsi-meet zoom filezilla bitwarden parsec warpinator PlexDesktop PlexHTPC stremio mpv vlc handbrake mkvtoolnix-gui filebot makemkv org.remmina.Remmina libreoffice openrgb firmware ferdium io.github.spacingbat3.webcord thunderbird org.gnome.Rhythmbox3 com.obsproject.Studio com.obsproject.Studio.Locale com.obsproject.Studio.Plugin.Gstreamer com.obsproject.Studio.Plugin.InputOverlay com.obsproject.Studio.Plugin.MoveTransition com.obsproject.Studio.Plugin.OBSVkCapture com.obsproject.Studio.Plugin.ScaleToSound com.obsproject.Studio.Plugin.SceneSwitcher com.obsproject.Studio.Plugin.TransitionTable com.obsproject.Studio.Plugin.WebSocket com.obsproject.Studio.Plugin.waveform + +# Install Flatpak packages +flatpak install -y "${flatpak_packages[@]}" + echo echo "#################################" echo " Done! Exit Me "