mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-09 02:29:22 +01:00
14 lines
525 B
Bash
14 lines
525 B
Bash
|
#!/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
|