flatpak-add-remotes.bash for flathub, -beta & kdeapps

This commit is contained in:
Aminda Suomalainen 2021-05-04 18:43:00 +03:00
parent 8a8647e752
commit 255bea8f24
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
1 changed files with 13 additions and 0 deletions

13
bash/flatpak-add-remotes.bash Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Show commands being executed
set -x
# So I don't have to remember these of wonder why my systems have different
# set of remotes and are missing something existing on another
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak remote-add --if-not-exists flathub-beta https://flathub.org/beta-repo/flathub-beta.flatpakrepo
flatpak remote-add --if-not-exists kdeapps https://distribute.kde.org/kdeapps.flatpakrepo
# Hide commands being executed again
set +x