mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
10 lines
237 B
Bash
Executable File
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 &
|