Last active
December 23, 2015 00:38
-
-
Save kingcons/6554533 to your computer and use it in GitHub Desktop.
Use sed on Fez settings to make it run Windowed.
This file contains hidden or 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/sh | |
wget http://libsdl.org/release/SDL2-2.0.0.tar.gz | |
tar zxvf SDL2-2*tar.gz | |
cd SDL2-2.0.0 | |
./configure && make -j 4 | |
# You may need to change the path to fez for this to work | |
rm ~/fez/lib64/libSDL2-2.0.so.0 | |
cp builds/.libs/libSDL2-2.0.so.0 ~/fez/lib64/ | |
sed -i s/Fullscreen/Windowed/g ~/.config/FEZ/Settings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment