34 lines
765 B
Bash
34 lines
765 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This script is assuming you've installed Fedora Sway Atomic (sericea)
|
||
|
#
|
||
|
# Show all available branches
|
||
|
# $ ostree remote refs fedora | grep sericea | grep $(uname -m)
|
||
|
#
|
||
|
# Rebase
|
||
|
# $ rpm-ostree rebase fedora:fedora/41/aarch64/sericea
|
||
|
|
||
|
# Add addtional RPM repos
|
||
|
cd /etc/yum.repos.d || exit 1
|
||
|
sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo
|
||
|
|
||
|
# Add flatpak repos
|
||
|
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||
|
|
||
|
rpm-ostree override remove firefox firefox-langpacks
|
||
|
rpm-ostree install \
|
||
|
distrobox \
|
||
|
tailscale \
|
||
|
syncthing \
|
||
|
ansible
|
||
|
|
||
|
sudo flatpak install -y \
|
||
|
io.gitlab.librewolf-community \
|
||
|
org.kde.kate
|
||
|
|
||
|
# The following may be needed
|
||
|
#
|
||
|
echo
|
||
|
echo "REBOOT NOW! (systemctl reboot)"
|
||
|
echo
|