Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Rework For flatpak Package Installer #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions scripts/flatpakz
Original file line number Diff line number Diff line change
@@ -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 "###############################################################################"
Expand All @@ -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 "
Expand Down