Skip to content

Instantly share code, notes, and snippets.

@wezoalves
Last active January 24, 2024 18:02
Show Gist options
  • Save wezoalves/8a2f252be6310f7ef3fae39804ccf20a to your computer and use it in GitHub Desktop.
Save wezoalves/8a2f252be6310f7ef3fae39804ccf20a to your computer and use it in GitHub Desktop.
Fedora 39 - Softwares Flat Hub
#!/bin/bash
#update: 2024-01-10
# Adicionar o repositório Flathub se ainda não estiver adicionado
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
# Lista de aplicativos a serem instalados
apps_to_install=(
"com.visualstudio.code"
"md.obsidian.Obsidian"
"com.adobe.Reader"
"com.belmoussaoui.ReadItLater"
"com.brave.Browser"
"com.github.IsmaelMartinez.teams_for_linux"
"com.github.bajoja.indicator-kdeconnect"
"com.github.bluesabre.darkbar"
"com.github.childishgiant.mixer"
"com.github.jeromerobert.pdfarranger"
"com.github.phase1geo.minder"
"com.github.sdv43.whaler"
"com.github.unrud.VideoDownloader"
"com.github.vikdevelop.photopea_app"
"com.google.Chrome"
"com.mattjakeman.ExtensionManager"
"com.meetfranz.Franz"
"com.obsproject.Studio"
"com.slack.Slack"
"com.spotify.Client"
"fr.romainvigier.MetadataCleaner"
"hu.irl.cameractrls"
"io.github.Figma_Linux.figma_linux"
"io.github.andreibachim.shortcut"
"io.gitlab.idevecore.Pomodoro"
"me.dusansimic.DynamicWallpaper"
"net.sapples.LiveCaptions"
"one.alynx.FlipClock"
"org.audacityteam.Audacity"
"org.filezillaproject.Filezilla"
"org.gimp.GIMP"
"org.gnome.Extensions"
"org.inkscape.Inkscape"
"org.jdownloader.JDownloader"
"org.videolan.VLC"
"re.sonny.Junction"
"rest.insomnia.Insomnia"
"sa.sy.bluerecorder"
"us.zoom.Zoom"
)
# Instalar os aplicativos
for app in "${apps_to_install[@]}"; do
flatpak install flathub "$app" -y
done
# To Run: $ sh installApps.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment