Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
iggut authored Aug 11, 2024
1 parent f8c849e commit 4258ec9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions files/scripts/initramfs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

set -euo pipefail

rpm-ostree cliwrap install-to-root /
QUALIFIED_KERNEL="$(rpm -qa | grep -P 'kernel-(\d+\.\d+\.\d+)' | sed -E 's/kernel-//')"
/usr/libexec/rpm-ostree/wrapped/dracut --no-hostonly --kver "${QUALIFIED_KERNEL}" --reproducible -v --add ostree -f "/lib/modules/${QUALIFIED_KERNEL}/initramfs.img"
17 changes: 17 additions & 0 deletions files/scripts/ptyxis.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/bash

set -oue pipefail

# Add Staging repo
wget https://copr.fedorainfracloud.org/coprs/ublue-os/staging/repo/fedora-40/ublue-os-staging-fedora-40.repo -O /etc/yum.repos.d/ublue-os-staging-fedora-40.repo

# 40 gets Ptyxis and patched Mutter
# rpm-ostree override replace \
# --experimental \
# --from repo=copr:copr.fedorainfracloud.org:ublue-os:staging \
# vte291 \
# vte-profile
# rpm-ostree install ptyxis

# Add Nerd Fonts
wget https://copr.fedorainfracloud.org/coprs/che/nerd-fonts/repo/fedora-40/che-nerd-fonts-fedora-40.repo -O /etc/yum.repos.d/_copr_che-nerd-fonts-40.repo

0 comments on commit 4258ec9

Please sign in to comment.