Last active
December 3, 2024 22:55
-
-
Save habedi/3931aa482cf8526aa8c86cac82640aad to your computer and use it in GitHub Desktop.
This script installs a few dependency libraries for Linux games #videogame #dependency #script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo dpkg --add-architecture i386 | |
sudo apt-get update | |
sudo apt-get install libopenal1:i386 libgtk2.0-0:i386 libvkd3d1 gamemode # gamemode:i386 | |
#sudo apt install gstreamer1.0-plugins-good:i386 gstreamer1.0-plugins-bad:i386 gstreamer1.0-plugins-ugly:i386 gstreamer1.0-libav:i386 | |
# OpenSSL 1.0 | |
# https://downloads.dotslashplay.it/resources/openssl/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment