Skip to content

Instantly share code, notes, and snippets.

@irgendwie
irgendwie / deps.sh
Last active June 5, 2019 09:12
xubuntu 18.04 LTS dependencies
#!/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
@irgendwie
irgendwie / userContent.css
Last active January 9, 2018 16:41
Dark background in about:newtab and about:home for Firefox
/* ~/.mozilla/firefox/%profile%/chrome/userContent.css */
@-moz-document url("about:newtab"), url("about:home") {
body {
background-color: #2F2F2F !important;
}
}
@irgendwie
irgendwie / fbd.css
Created November 16, 2017 22:04
Fefes Blog Dark
/* 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;
}

Make Worms W.M.D runnable on ArchLinux

Create a new file 'RunModified.sh' next to 'Run.sh' and add the following content

#!/bin/bash

GAME_PATH=${GAME_PATH:=~/.steam/steam}

export LC_ALL=C
export LD_LIBRARY_PATH="/usr/lib:/usr/local/lib"