Skip to content

Instantly share code, notes, and snippets.

@kingcons
Last active December 23, 2015 00:38
Show Gist options
  • Save kingcons/6554533 to your computer and use it in GitHub Desktop.
Save kingcons/6554533 to your computer and use it in GitHub Desktop.
Use sed on Fez settings to make it run Windowed.
#!/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