#!/bin/bash GAME_PATH=${GAME_PATH:=~/.steam/steam} export LC_ALL=C export LD_LIBRARY_PATH="/usr/lib:/usr/local/lib"
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
/* colors from Monokai color theme for TextMate | |
* https://www.monokai.nl/attic/textmate/Monokai.tmTheme | |
*/ | |
body { | |
background-color: #272822; | |
color: #F8F8F2; | |
} | |
h2 a { | |
color: #F8F8F2 !important; | |
} |
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
/* ~/.mozilla/firefox/%profile%/chrome/userContent.css */ | |
@-moz-document url("about:newtab"), url("about:home") { | |
body { | |
background-color: #2F2F2F !important; | |
} | |
} |
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 | |
# | |
# vanilla speed-dreams | |
# | |
sudo apt install cmake g++ libopenscenegraph-dev libjpeg-dev \ | |
libpng-dev libopenal-dev libogg-dev libvorbis-dev libsdl2-dev \ | |
libexpat1-dev libplib-dev libenet-dev | |
# boost |