You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
mkdir -p ~/playonlinux
|
|
|
|
docker run --rm -it --privileged \
|
|
--device /dev/dri/card0:/dev/dri/card0 \
|
|
-e DISPLAY=:0 \
|
|
-v /tmp/.X11-unix:/tmp/.X11-unix:rw \
|
|
-v /dev/snd:/dev/snd:rw \
|
|
-v ~/playonlinux:/home/ben:rw \
|
|
playonlinux --run Steam
|