Skip to content

Instantly share code, notes, and snippets.

@safijari
Created November 13, 2023 19:43
Show Gist options
  • Save safijari/69a1a6fbfc1d2aef7cb41884c7d99fc6 to your computer and use it in GitHub Desktop.
Save safijari/69a1a6fbfc1d2aef7cb41884c7d99fc6 to your computer and use it in GitHub Desktop.
Script for getting set up to build gamescope with rwfus enabled
#!/bin/bash
sudo rm /etc/ld.so.conf.d/lib32-fakeroot.conf
sudo rm /etc/ld.so.conf.d/fakeroot.conf
sudo rm /etc/ssh/sshd_config.d/99-archlinux.conf
sudo rm -rf /etc/pacman.d/gnupg/ || :
sudo pacman-key --init
sudo pacman-key --populate
sudo pacman -Sy --noconfirm --needed archlinux-keyring
sudo pacman --noconfirm -S $(pacman -Qnkq | cut -d' ' -f1 | sort | uniq)
sudo pacman -S base-devel multilib-devel --needed
sudo pacman -S --noconfirm git meson clang glslang libcap wlroots \
sdl2 vulkan-headers libx11 libxmu libxcomposite libxrender libxres \
libxtst libxkbcommon libdrm libinput wayland-protocols benchmark pipewire cmake
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment