16 lines
331 B
Bash
Executable File
16 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Install Steam and graphics drivers selected for this system
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
omarchy-pkg-add steam
|
|
omarchy-install-vulkan-lib32
|
|
omarchy-install-nvidia-lib32
|
|
|
|
echo ""
|
|
echo "Steam will start automatically now. This might take a while..."
|
|
|
|
setsid gtk-launch steam >/dev/null 2>&1 &
|