├── Dockerfile ├── LICENSE.md ├── README.md ├── finalize_installation.sh ├── gpu.sh ├── launcher.sh ├── shared_directory ├── exportSteam.sh ├── exportTerraria.sh ├── importSteam.sh └── importTerraria.sh ├── winecfg-audio.png └── winecfg-graphics.png /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/README.md -------------------------------------------------------------------------------- /finalize_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/finalize_installation.sh -------------------------------------------------------------------------------- /gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/gpu.sh -------------------------------------------------------------------------------- /launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/launcher.sh -------------------------------------------------------------------------------- /shared_directory/exportSteam.sh: -------------------------------------------------------------------------------- 1 | cp -rf ~/.wine/drive_c/Program\ Files/Steam ~/shared_directory/ 2 | -------------------------------------------------------------------------------- /shared_directory/exportTerraria.sh: -------------------------------------------------------------------------------- 1 | cp -rf ~/My\ Games/Terraria ~/shared_directory/ 2 | -------------------------------------------------------------------------------- /shared_directory/importSteam.sh: -------------------------------------------------------------------------------- 1 | cp -rf ~/shared_directory/Steam ~/.wine/drive_c/Program\ Files/ 2 | -------------------------------------------------------------------------------- /shared_directory/importTerraria.sh: -------------------------------------------------------------------------------- 1 | cp -rf ~/shared_directory/Terraria ~/My\ Games/ 2 | -------------------------------------------------------------------------------- /winecfg-audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/winecfg-audio.png -------------------------------------------------------------------------------- /winecfg-graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webanck/docker-wine-steam/HEAD/winecfg-graphics.png --------------------------------------------------------------------------------