new test setup
This commit is contained in:
parent
53e3925e82
commit
92d7aba4aa
1 changed files with 27 additions and 0 deletions
27
fedora-atomic/cosmic-de-setup.sh
Executable file
27
fedora-atomic/cosmic-de-setup.sh
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This script is assuming you've installed Fedora Sway Atomic (sericea)
|
||||||
|
|
||||||
|
# Add addtional RPM repos
|
||||||
|
cd /etc/yum.repos.d || exit 1
|
||||||
|
sudo wget https://copr.fedorainfracloud.org/coprs/ryanabx/cosmic-epoch/repo/fedora-$(rpm -E %fedora)/ryanabx-cosmic-epoch-fedora-$(rpm -E %fedora).repo -O /etc/yum.repos.d/_copr_ryanabx-cosmic.repo
|
||||||
|
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 \
|
||||||
|
cosmic-desktop
|
||||||
|
|
||||||
|
# The following may be needed
|
||||||
|
#
|
||||||
|
echo "The following commands will be needed following a reboot to enable the Cosmic Desktop "
|
||||||
|
echo
|
||||||
|
echo "systemctl disable sddm.service"
|
||||||
|
echo "systemctl enable cosmic-greeter.service"
|
||||||
|
echo "systemctl reboot"
|
||||||
|
echo
|
Loading…
Reference in a new issue