Files
omarchy/bin/omarchy-install-steam
2026-01-05 10:17:32 +01:00

10 lines
237 B
Bash
Executable File

#!/bin/bash
# Install and launch Steam after first letting the user pick the correct grahics card drivers.
set -e
echo "Now pick dependencies matching your graphics card"
sudo pacman -S steam
setsid gtk-launch steam >/dev/null 2>&1 &