mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
11 lines
249 B
Bash
Executable File
11 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Install Steam and graphics drivers selected for this system
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
echo "Now pick dependencies matching your graphics card"
|
|
sudo pacman -S steam
|
|
setsid gtk-launch steam >/dev/null 2>&1 &
|