* feat: add container-tools bling option * feat(bling-module): add gnome-vrr copr install script * fix: um this shouldnt be here * docs(bling-module): gnome-vrr description
10 lines
567 B
Bash
10 lines
567 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
wget -O "/etc/yum.repos.d/_copr_kylegospo-gnome-vrr.repo" "https://copr.fedorainfracloud.org/coprs/kylegospo/gnome-vrr/repo/fedora-${FEDORA_MAJOR_VERSION}/kylegospo-gnome-vrr-fedora-${FEDORA_MAJOR_VERSION}.repo"
|
|
|
|
rpm-ostree override replace --experimental --from repo=copr:copr.fedorainfracloud.org:kylegospo:gnome-vrr mutter mutter-common gnome-control-center gnome-control-center-filesystem xorg-x11-server-Xwayland
|
|
|
|
rm -f /etc/yum.repos.d/_copr_kylegospo-gnome-vrr.repo
|