create similar setup for silverblue
This commit is contained in:
parent
9c16bb27aa
commit
53e3925e82
1 changed files with 32 additions and 0 deletions
32
fedora-atomic/silverblue-setup.sh
Executable file
32
fedora-atomic/silverblue-setup.sh
Executable file
|
@ -0,0 +1,32 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
mkdir -p ~/h
|
||||||
|
|
||||||
|
cd /etc/yum.repos.d || exit 1
|
||||||
|
sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo
|
||||||
|
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 \
|
||||||
|
epiphany \
|
||||||
|
python3-keyring \
|
||||||
|
wl-clipboard \
|
||||||
|
source-foundry-hack-fonts \
|
||||||
|
mozilla-fira-fonts-common \
|
||||||
|
mozilla-fira-mono-fonts \
|
||||||
|
mozilla-fira-sans-fonts \
|
||||||
|
fastfetch \
|
||||||
|
mutt \
|
||||||
|
msmtp \
|
||||||
|
lynx
|
||||||
|
|
||||||
|
ARCH=$(/usr/bin/arch)
|
||||||
|
if [[ ${ARCH} = "x86_64" ]]; then
|
||||||
|
sudo wget https://rpm.librewolf.net/librewolf-repo.repo
|
||||||
|
rpm-ostree install librewolf
|
||||||
|
else
|
||||||
|
sudo flatpak install -y io.gitlab.librewolf-community
|
||||||
|
fi
|
Loading…
Reference in a new issue