Skip to content

Instantly share code, notes, and snippets.

@okb1100
Last active October 30, 2021 16:45
Show Gist options
  • Save okb1100/31a0d11da51fac485e427d8ffce4e029 to your computer and use it in GitHub Desktop.
Save okb1100/31a0d11da51fac485e427d8ffce4e029 to your computer and use it in GitHub Desktop.
#linux-stuff [steam swrast thing]
#!/bin/bash
## Install Steam and fix swrast problem on Arch Linux
## Modify this script to use with Nvidia or Intel GPUs
sudo pacman -Syu steam ttf-liberation xf86-video-ati mesa-libgl lib32-mesa-libgl lib32-alsa-plugins
steam &
sleep 5
killall steam
find ~/.steam/root/ \( -name "libgcc_s.so*" -o -name "libstdc++.so*" -o -name "libxcb.so*" \) -print -delete
find ~/.local/share/Steam/ \( -name "libgcc_s.so*" -o -name "libstdc++.so*" -o -name "libxcb.so*" \) -print -delete
steam
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment