blocked but fun
parent
6bd6e01898
commit
1a80e70fc4
|
|
@ -6,4 +6,6 @@ Think Dug's Twitch Chat Plays
|
||||||
* input gamepad; https://github.com/orsinium-labs/gamepad
|
* input gamepad; https://github.com/orsinium-labs/gamepad
|
||||||
* gcc plan b; https://github.com/go-vgo/robotgo
|
* gcc plan b; https://github.com/go-vgo/robotgo
|
||||||
* gaaaaaym; https://www.mariowiki.com/Mario_Party_7
|
* gaaaaaym; https://www.mariowiki.com/Mario_Party_7
|
||||||
* multiplayer engine; https://parsec.app/features
|
* multiplayer engine
|
||||||
|
* server; https://github.com/LizardByte/Sunshine
|
||||||
|
* client; https://moonlight-stream.org/
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/docker.html
|
||||||
|
https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/usage.html
|
||||||
|
https://localhost:47990/
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"env": {
|
||||||
|
"PATH": "$(PATH):$(HOME)/.local/bin"
|
||||||
|
},
|
||||||
|
"apps": [
|
||||||
|
{
|
||||||
|
"name": "Desktop",
|
||||||
|
"image-path": "desktop.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Low Res Desktop",
|
||||||
|
"image-path": "desktop.png",
|
||||||
|
"prep-cmd": [
|
||||||
|
{
|
||||||
|
"do": "xrandr --output HDMI-1 --mode 1920x1080",
|
||||||
|
"undo": "xrandr --output HDMI-1 --mode 1920x1200"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Steam Big Picture",
|
||||||
|
"detached": [
|
||||||
|
"setsid steam steam://open/bigpicture"
|
||||||
|
],
|
||||||
|
"image-path": "steam.png"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
[2023:03:02:14:26:34]: Error: Couldn't find any of the following libraries: [libgbm.so.1, libgbm.so]
|
||||||
|
[2023:03:02:14:26:34]: Error: Couldn't load cuda: -1
|
||||||
|
[2023:03:02:14:26:34]: Warning: Couldn't find /dev/dri, kmsgrab won't be enabled
|
||||||
|
[2023:03:02:14:26:34]: Warning: libgbm not initialized
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
echo https://localhost:47990/
|
||||||
|
|
||||||
|
docker run \
|
||||||
|
--rm -it \
|
||||||
|
-e PUID=$(id -u $USER) \
|
||||||
|
-e PGID=$(id -g $USER) \
|
||||||
|
-e TZ=America/Denver \
|
||||||
|
-v "$PWD"/config:/config \
|
||||||
|
-p 47984-47990:47984-47990/tcp \
|
||||||
|
-p 48010:48010 \
|
||||||
|
-p 47998-48000:47998-48000/udp \
|
||||||
|
ghcr.io/lizardbyte/sunshine:latest-debian-bullseye
|
||||||
Loading…
Reference in New Issue