You've already forked fedora-toolbox
forked from davejansen/fedora-bootc
16 lines
305 B
Bash
Executable File
16 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ouex pipefail
|
|
|
|
/ctx/common/setup.sh
|
|
|
|
# Install Niri, the scrollable-tiling window compositor
|
|
# https://yalter.github.io/niri/
|
|
dnf5 -y copr enable avengemedia/dms
|
|
dnf5 -y install niri dms alacritty brightnessctl
|
|
dnf5 -y copr disable avengemedia/dms
|
|
|
|
/ctx/common/services.sh
|
|
|
|
echo "Done."
|